Justin Dixon
Forum Replies Created
-
Any word on getting this to work with WooCommerce Subscriptions?
It is a commonly used WC plugin.
After further investigation, it looks like the conflict may be with “WooCommerce Subscriptions“.
Once enabled, the bulk editing of any product variations stops working. The plugin does inject extra settings into the variation options.Forum: Plugins
In reply to: [LiteSpeed Cache] Several websites getting 404 errors for JS and CSSDoes the recent stable release include this fix?
Forum: Plugins
In reply to: [LiteSpeed Cache] Several websites getting 404 errors for JS and CSSSo far v5.4-a6 seems to be working. No 404 errors but have only tried on one website.
Will add to a couple more websites.
Forum: Plugins
In reply to: [LiteSpeed Cache] Several websites getting 404 errors for JS and CSSI got a response from support that the issue is being fixed.
They recommended disabling CSS/JS combine or downgrading to v5.2 in the interim.
Forum: Reviews
In reply to: [WooCommerce Admin] I do love what this plugin does, but….Any chance you know of a thread where this was mentioned or could update us here when this is fixed?
Forum: Plugins
In reply to: [Search by SKU for Woocommerce] Search by SKU not working WC 3.4.6Nevermind, I misread your post.
Mine searches for regular products SKU, but not variable products SKU.
Forum: Plugins
In reply to: [Search by SKU for Woocommerce] Search by SKU not working WC 3.4.6@lan2201 Did you figure this out?
I am not sure if it is related to that bug – I tried regenerating product data but it did not help.
- This reply was modified 5 years, 4 months ago by Justin Dixon.
Forum: Plugins
In reply to: [Disable Gutenberg] Plugin disables frontend CSSThank you, yes, I missed the hidden options.
Forum: Plugins
In reply to: [LiteSpeed Cache] Clear private cache page from PHPHello @stanleylitespeed,
I said PHP because I needed to clear a customers cache for a specific privately cached page programmatically after they change a setting on their account. If the cache of the page was not cleared it would not reflect the setting change.
I have already found the solution though… To clear LiteSpeed you can use these HTTP headers.
Then to add HTTP headers to WordPress you can see this stack overflow answer.
So should look something like this;
function ff_clear_cache() { header("X-LiteSpeed-Purge: private, *"); } //add this whenever you need cache cleared programmatically add_action( 'send_headers', 'ff_clear_cache' );
- This reply was modified 5 years, 7 months ago by Justin Dixon.
Yes, I have tried the scroll mode as well and it still has the same issue. You can see the same page I have it set to scroll now.
If I set a hard-coded width on the table of either mode it works fine but I cannot see why the table is no respecting the width of the parent.
- This reply was modified 6 years, 6 months ago by Justin Dixon.
Forum: Plugins
In reply to: [WP Super Cache] Cached files only last a few minutesHave there been any updates to this issue?
Forum: Plugins
In reply to: [WP_Places] Fatal error: Call to a member function selected_post_types()I get this same error as well.
It breaks both the front end and backend of the website.
Forum: Plugins
In reply to: [WP Super Cache] Cached files only last a few minutesYes, you get the old cached page still after updating. Even with the setting “Clear all cache files when a post or page is published or updated.” turned on.
Yes, I have a cron job that runs wp-cron.php every 10 minutes.
Forum: Plugins
In reply to: [WP Super Cache] Cached files only last a few minutesSo since I had to add the homepage and blog to “Directly Cached Files” to keep the rest of the cached pages from being prematurely deleted every few minutes, is there any way that those pages get renewed automatically?
Should a page update or preload not refresh those pages? Is my only option to delete them via a cron job?