Changeset 2137148
- Timestamp:
- 08/09/2019 05:50:59 PM (7 years ago)
- Location:
- wp-profitshare-advertisers/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
includes/controllers/class-PWA-feed.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-profitshare-advertisers.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-profitshare-advertisers/trunk/changelog.txt
r2048146 r2137148 17 17 1.1.1 18 18 Update module functions to work with lower wordpress versions. 19 20 1.1.2 21 Fix products export, now will be exported only the visible products. - Special thanks to somnart.ro -
wp-profitshare-advertisers/trunk/includes/controllers/class-PWA-feed.php
r2048146 r2137148 14 14 15 15 // products filters 16 const PRODUCTS_FILTERS = array (16 const PRODUCTS_FILTERS = array( 17 17 'orderby' => 'date', 18 18 'order' => 'DESC', 19 19 'limit' => -1, 20 'visibility' => 'visible', 20 21 ); 21 22 22 23 public function __construct() 23 24 { 24 if(class_exists("WC_Product_Query W")) {25 if(class_exists("WC_Product_Query")) { 25 26 $this->products = $this->getProductsQuery()->get_products(); 26 27 } else { -
wp-profitshare-advertisers/trunk/readme.txt
r2048146 r2137148 4 4 Requires at least: 3.0 5 5 Tested up to: 5.1 6 Stable tag: 1.1. 16 Stable tag: 1.1.2 7 7 Contributors: Conversion.ro 8 8 License: GPLv2 … … 60 60 = 1.1.1 = 61 61 Update module functions to work with lower wordpress versions. 62 63 = 1.1.2 = 64 Fix products export, now will be exported only the visible products. - Special thanks to somnart.ro -
wp-profitshare-advertisers/trunk/wp-profitshare-advertisers.php
r2048146 r2137148 4 4 * Plugin URI: https://www.profitshare.ro 5 5 * Description: Profitshare module for wordpress woocommerce 6 * Version: 1.1. 16 * Version: 1.1.2 7 7 * Author: Conversion 8 8 * Author URI: https://www.conversion.ro … … 16 16 */ 17 17 18 define('PWA_VERSION', '1.1. 1');18 define('PWA_VERSION', '1.1.2'); 19 19 20 20 function pwa_get_plugin() {
Note: See TracChangeset
for help on using the changeset viewer.