cdbtech
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Issue with order list sequenceI’m seeing the same issue. It looks like it’s caused by class-wcpdf-admin.php:1402 sort_orders_by_numeric_invoice_number()
if ( ! is_admin() || ! $query->is_main_query() || 'shop_order' !== $query->get( 'post_type' ) && '_wcpdf_invoice_number' !== $query->get( 'meta_key' ) ) { return; }is probably supposed to be:
if ( ! is_admin() || ! $query->is_main_query() || 'shop_order' !== $query->get( 'post_type' ) || '_wcpdf_invoice_number' !== $query->get( 'meta_key' ) ) { return; }The incorrect AND is causing all queries to use meta_value_num, instead of just queries sorted by invoice number.
Would appreciate a quick patch for the issue. Thanks.
Forum: Plugins
In reply to: [Disable Blog] Slow SQL for Large WooCommerce ShopPerfect – thank you so much!
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] Orders Not SyncingWould appreciate some feedback on this, especially since this plugin seems to be an official ActiveCampaign product…
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] Cart AbandonmentWould appreciate some feedback on this, especially since this plugin seems to be an official ActiveCampaign product…
Viewing 4 replies - 1 through 4 (of 4 total)