Changeset 3067117
- Timestamp:
- 04/08/2024 05:51:25 PM (2 years ago)
- Location:
- webd-woocommerce-advanced-reporting-statistics/trunk
- Files:
-
- 3 edited
-
class-admin.php (modified) (4 diffs)
-
readme.txt (modified) (4 diffs)
-
webd-woocommerce-reporting-statistics.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
webd-woocommerce-advanced-reporting-statistics/trunk/class-admin.php
r3066749 r3067117 402 402 $order_data['phone'] = ( method_exists( $order, 'get_billing_phone' ) ) ? $order->get_billing_phone() : ''; 403 403 $order_data['country'] = ( method_exists( $order, 'get_billing_country' ) ) ? $order->get_billing_country() : ''; 404 $order_data['shipping'] = ( method_exists( $order, 'get_ total_shippping' ) ) ? $order->get_total_shippping() : '';404 $order_data['shipping'] = ( method_exists( $order, 'get_shipping_total' ) ) ? $order->get_shipping_total() : ''; 405 405 $order_data['subtotal'] = ( method_exists( $order, 'get_subtotal' ) ) ? $order->get_subtotal() : ''; 406 406 $order_data['total'] = ( method_exists( $order, 'get_total' ) ) ? $order->get_total() : ''; … … 503 503 $this->total += $order['total']; 504 504 $this->subtotal += $order['subtotal']; 505 $this->shipping += $order['shipping']; 505 506 $this->taxes += $order['tax']; 506 507 $this->refunds += (int)$order['refund']; … … 571 572 $this->taxes = 0; 572 573 $this->refunds = 0; 574 $this->shipping = 0; 573 575 $this->refunds = 0; 574 576 $this->discounts = 0; … … 586 588 $this->refunds += (int)$order['refund']; 587 589 $this->discounts += $order['discount']; 590 $this->shipping += $order['shipping']; 588 591 $this->products += $order['quantity']; 589 592 if ( !in_array( $order['date'] , $this->uniqueDates ) ) array_push( $this->uniqueDates, $order['date'] ); -
webd-woocommerce-advanced-reporting-statistics/trunk/readme.txt
r3066749 r3067117 6 6 Requires PHP: 5.2.4 7 7 Tested up to: 6.5 8 Stable tag: 2. 68 Stable tag: 2.7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 79 79 = Orders are not loaded! what to do? = 80 Check that wp-cron is active . You can install WP Cron control plugin .check the events . Check WP CRON events for fetchOrders_for_stats action and press run now . This will download yours orders to text file.80 Check that wp-cron is active. It is mandatory that is active as this is the new way orders are fetched in text files. You can install WP Cron control plugin - check the events . Check WP CRON events for fetchOrders_for_stats action and press run now . This will download yours orders to text file. 81 81 82 82 = How to add an order custom field in my reports? = … … 91 91 92 92 == Changelog == 93 94 = 2.7 = 95 fix total shipping display on general display 93 96 94 97 = 2.6 = … … 205 208 = 2.6 = 206 209 added search functionality in report tables 210 211 = 2.7 = 212 fix total shipping display on general display -
webd-woocommerce-advanced-reporting-statistics/trunk/webd-woocommerce-reporting-statistics.php
r3066749 r3067117 4 4 * Plugin URI: https://extend-wp.com/advanced-reporting-statistics-plugin-for-woocommerce/ 5 5 * Description: A comprehensive WordPress Plugin for WooCommerce Reports, Statistics, Analytics & Forecasting Tool for Orders, Sales, Products, Countries, Payment Gateways Shipping, Tax, Refunds, Top Products. 6 * Version: 2. 66 * Version: 2.7 7 7 * Author: extendWP 8 8 * Author URI: https://extend-wp.com … … 72 72 $plugins[] = (object)array( 73 73 'slug' => 'webd-woocommerce-advanced-reporting-statistics', 74 'version' => '2. 5'74 'version' => '2.7' 75 75 ); 76 76
Note: See TracChangeset
for help on using the changeset viewer.