Changeset 3141001
- Timestamp:
- 08/25/2024 09:04:01 AM (17 months ago)
- Location:
- newsmanapp/trunk
- Files:
-
- 2 edited
-
newsmanapp.php (modified) (1 diff)
-
wc-newsman-remarketing.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
newsmanapp/trunk/newsmanapp.php
r3119068 r3141001 5 5 Plugin URI: https://github.com/Newsman/WP-Plugin-NewsmanApp 6 6 Description: NewsmanApp for Wordpress (sign up widget, subscribers sync, create and send newsletters from blog posts) 7 Version: 2.7. 27 Version: 2.7.3 8 8 Author: Newsman 9 9 Author URI: https://www.newsman.com -
newsmanapp/trunk/wc-newsman-remarketing.php
r3119068 r3141001 6 6 * Author: Newsman 7 7 * Author URI: https://newsman.com 8 * Version: 2.7. 28 * Version: 2.7.3 9 9 * WC requires at least: 2.1 10 10 * WC tested up to: 9.0.2 … … 62 62 $this->_json(array("status" => 0, "message" => "WooCommerce is not installed")); 63 63 } 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' => $start70 ));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' => $start77 ));78 }79 } else {80 $order_data_store = WC_Data_Store::load('order');81 $orders = wc_get_orders(array(82 'limit' => $limit,83 'offset' => $start84 ));85 }86 64 87 65 switch ($_GET["newsman"]) {
Note: See TracChangeset
for help on using the changeset viewer.