• Hello.

    Thank you for this plugin.

    I noticed I have some products missing from the following modules in the dashboard:
    – Ecommerce Product sales
    – Sales By

    For example, 3 customers have ordered 10 unique products (ipod, book, cup, etc.) in the past 48 hours, but the E-commerce Product Sales module only displays 5 items.

    The Sales By module only displays 4 unique items sold for this month, as opposed to ten items.

    I installed the plugin as instructed. Is there something I need to change or upgrade?

    I am running:
    WP 2.9.2
    WP-ECOM 3.7.6.2
    WP Dash 1.40

    I hope all is well.

    http://wordpress.org/extend/plugins/wp-e-commerce-dashboard-widgets/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Lee Willis

    (@leewillis77)

    For example, 3 customers have ordered 10 unique products (ipod, book, cup, etc.) in the past 48 hours, but the E-commerce Product Sales module only displays 5 items.

    Hi – that module only shows the 5 highest products by default. If you want to increase it there’s a WordPress filter that allows you to change it to whatever you want. So, just add something like this to your WordPress theme’s functions.php file:

    function my-adjustment-to-product-sales($current_limit) {
        return 999;
    }
    add_filter('ses_wpscd_product_sales_limit','my-adjustment-to-product-sales');

    The other module (Sales By) is part of standard WP e-Commerce so your best bet for issues with that is the WP e-Commerce forum – http://getshopped.org/forums/

    Thanks

    Thread Starter misterstimulation

    (@misterstimulation)

    Thank you so much.

    The filter did not work. As a result, I edited the plugin file. I also asked for help in the getshopped forums.

    I hope all is well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP E-Commerce Dashboard] Purchase products missing from dashboard’ is closed to new replies.