blurredj
Forum Replies Created
-
I also had this problem. I was then told that this plugin was integrated with Woo product add-ons, so I purchased a license and it doesnt work at all. If plugin is in normal checkout the add-ons do not show in admin, they do in RFQ mode. This isnt an option for our website though.
Forum: Plugins
In reply to: [Index WP MySQL For Speed] Large website extremely slow queriesOllie,
Thank you for working on this.. I have installed the first draft and do see improvement. I am going to monitor over the next few days and I’ll report back to you.
Forum: Plugins
In reply to: [Index WP MySQL For Speed] Large website extremely slow queriesMakes perfect sense, Ollie. Didn’t even take that into consideration. Will look into this as well.
Thank you.Forum: Plugins
In reply to: [Index WP MySQL For Speed] Large website extremely slow queriesYes, the nasty query you speak of is a product category page as I mentioned above. The query displays 50 products per page (not sure why it says 15) with total of over 30k products.
Are you suggesting working on the pagination “show more” to help cut down query time? Currently using the following for paging.$loop->found_posts;
$loop->max_num_pages;
As for the filtering, that is mandatory for this business.Forum: Plugins
In reply to: [Index WP MySQL For Speed] Large website extremely slow queriesMight add that each product can have upto 14 attributes in which they can be filtered by in each product category. For instance, one category has over 30k products with 13 filterable attributes.
Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] Site breaks with latest Version 1.9.59So, I found out that it was due to the latest version of WooCommerce Payments (5.5). I downgraded to version 5.4 and all is working. There was no error with NP Quote.. I just assumed since it was the last update made.
thank you for the quick response nontheless.
Forum: Plugins
In reply to: [NP Quote Request for WooCommerce] Site breaks with latest Version 1.9.59It looks like any page with NP Quote (ie, cart, single product page), it breaks. I don’t want to add link to site here.
N0, I am using:
https://www.damiencarbery.com/2020/04/defer-woocommerce-emails-for-a-few-minutes/
This works great for all woocommerce emails, but not with the quote request. I added the following code to my theme functions to test and it will work, but the problem is, it sends the quote emails 2 times.. normal (right after order is placed) and deferred (time set in the above plugin):
if ( apply_filters( ‘woocommerce_defer_transactional_emails’, false ) ) {
function new_woocommerce_email_actions( $actions ){
$actions[] = ‘woocommerce_order_status_gplsquote-req’;
return $actions;
}
add_filter( ‘woocommerce_email_actions’, ‘new_woocommerce_email_actions’ );
}
Forum: Plugins
In reply to: [WordPress Native PHP Sessions] pass session variable to thankyou pageThanks for replying Daniel… I already have session_start() at beginning of files. The issue seemed to be the woocommerce_thankyou hook. Change to woocommerce_checkout_order_processed and everything is working correctly. Seems that thank you page was generated before variable was saved, therefore using previously saved variable.