Plugin Directory

Changeset 2137148


Ignore:
Timestamp:
08/09/2019 05:50:59 PM (7 years ago)
Author:
Profitshare
Message:

Update to 1.1.2

Location:
wp-profitshare-advertisers/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-profitshare-advertisers/trunk/changelog.txt

    r2048146 r2137148  
    17171.1.1
    1818Update module functions to work with lower wordpress versions.
     19
     201.1.2
     21Fix 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  
    1414
    1515    // products filters
    16     const PRODUCTS_FILTERS = array (
     16    const PRODUCTS_FILTERS = array(
    1717        'orderby' => 'date',
    1818        'order' => 'DESC',
    1919        'limit' => -1,
     20        'visibility' => 'visible',
    2021    );
    2122
    2223    public function __construct()
    2324    {
    24         if(class_exists("WC_Product_QueryW")) {
     25        if(class_exists("WC_Product_Query")) {
    2526            $this->products = $this->getProductsQuery()->get_products();
    2627        } else {
  • wp-profitshare-advertisers/trunk/readme.txt

    r2048146 r2137148  
    44Requires at least: 3.0
    55Tested up to: 5.1
    6 Stable tag: 1.1.1
     6Stable tag: 1.1.2
    77Contributors: Conversion.ro
    88License: GPLv2
     
    6060= 1.1.1 =
    6161Update module functions to work with lower wordpress versions.
     62
     63= 1.1.2 =
     64Fix 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  
    44 * Plugin URI: https://www.profitshare.ro
    55 * Description: Profitshare module for wordpress woocommerce
    6  * Version: 1.1.1
     6 * Version: 1.1.2
    77 * Author: Conversion
    88 * Author URI: https://www.conversion.ro
     
    1616 */
    1717
    18 define('PWA_VERSION', '1.1.1');
     18define('PWA_VERSION', '1.1.2');
    1919
    2020function pwa_get_plugin() {
Note: See TracChangeset for help on using the changeset viewer.