Plugin Directory

Changeset 2366626


Ignore:
Timestamp:
08/21/2020 02:56:18 PM (6 years ago)
Author:
amribrahim
Message:

Fix : WooCommerce graph was returning the last 10 orders only.

Location:
lara-google-analytics/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • lara-google-analytics/trunk/core/plugins/earnings/wordpress/lrga_wp_woo_plugin.php

    r2346774 r2366626  
    211211    }   
    212212   
    213     private function getOrders(){ //revise
     213    private function getOrders(){
    214214        $args = array( 'date_paid' => ''.$this->startDate->format('U').'...'.$this->endDate->format('U').'',
    215                        'status'    => 'completed'
     215                       'status'    => 'completed',
     216                       'limit'     => -1
    216217                     );
    217218        return wc_get_orders($args);
  • lara-google-analytics/trunk/lara-google-analytics.php

    r2346774 r2366626  
    55Plugin URI: https://www.xtraorbit.com/wordpress-google-analytics-dashboard-widget/
    66Description: Full width Google Analytics dashboard widget for Wordpress admin interface, which also inserts latest Google Analytics tracking code to your pages.
    7 Version: 3.3.0
     7Version: 3.3.1
    88Author: Amr M. Ibrahim
    99Author URI: https://www.xtraorbit.com/
     
    1616    die("This file cannot be accessed directly");
    1717
    18 define ("lrgawidget_plugin_version", "3.3.0");
     18define ("lrgawidget_plugin_version", "3.3.1");
    1919define ("lrgawidget_plugin_prefiex", "lrgalite-");
    20 define ("lrgawidget_plugin_scripts_version", "330");
     20define ("lrgawidget_plugin_scripts_version", "331");
    2121define ("lrgawidget_plugin_dir", dirname(__FILE__ ) . DIRECTORY_SEPARATOR);
    2222define ("lrgawidget_plugin_dir_url", plugin_dir_url( __FILE__ ));
  • lara-google-analytics/trunk/readme.txt

    r2350394 r2366626  
    55Requires at least: 4.7.0
    66Tested up to: 5.5.0
    7 Stable tag: 3.3.0
     7Stable tag: 3.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727
    2828== Screenshots ==
    29 1. Setup Screen, showing Express and Advanced Google Analytics setup options..
     291. Setup Screen, showing Express and Advanced Google Analytics setup options.
    30302. Full width Google Analytics sessions tab.
    31313. Google Analytics Sessions tab on wide screens.
     
    4141
    4242== Changelog ==
     43= 3.3.1 =
     44* 21-Aug-2020
     45* Fix : WooCommerce graph was returning the last 10 orders only.
     46
    4347= 3.3.0 =
    4448* 26-Jul-2020
Note: See TracChangeset for help on using the changeset viewer.