Plugin Directory

Changeset 3141001


Ignore:
Timestamp:
08/25/2024 09:04:01 AM (17 months ago)
Author:
newsmanapp
Message:

fixedHpos

Location:
newsmanapp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • newsmanapp/trunk/newsmanapp.php

    r3119068 r3141001  
    55Plugin URI: https://github.com/Newsman/WP-Plugin-NewsmanApp
    66Description: NewsmanApp for Wordpress (sign up widget, subscribers sync, create and send newsletters from blog posts)
    7 Version: 2.7.2
     7Version: 2.7.3
    88Author: Newsman
    99Author URI: https://www.newsman.com
  • newsmanapp/trunk/wc-newsman-remarketing.php

    r3119068 r3141001  
    66 * Author: Newsman
    77 * Author URI: https://newsman.com
    8  * Version: 2.7.2
     8 * Version: 2.7.3
    99 * WC requires at least: 2.1
    1010 * WC tested up to: 9.0.2
     
    6262                    $this->_json(array("status" => 0, "message" => "WooCommerce is not installed"));
    6363                }
    64 
    65                 if (defined('WC_VERSION') && version_compare(WC_VERSION, '7.1.0', '>=')) {
    66                     if (class_exists('\Automattic\WooCommerce\Utilities\OrderUtil') && \Automattic\WooCommerce\Utilities\OrderUtil::custom_orders_table_usage_is_enabled()) {
    67                         $query = new WC_Order_Query(array(
    68                             'limit' => $limit,
    69                             'offset' => $start
    70                         ));
    71                         $orders = $query->get_orders();
    72                     } else {
    73                         $order_data_store = WC_Data_Store::load('order');
    74                         $orders = wc_get_orders(array(
    75                             'limit' => $limit,
    76                             'offset' => $start
    77                         ));
    78                     }
    79                 } else {
    80                     $order_data_store = WC_Data_Store::load('order');
    81                     $orders = wc_get_orders(array(
    82                         'limit' => $limit,
    83                         'offset' => $start
    84                     ));
    85                 }
    8664           
    8765                switch ($_GET["newsman"]) {
Note: See TracChangeset for help on using the changeset viewer.