Ken Brubacher
Forum Replies Created
-
that seems to have worked, thanks!
When a new version comes out, do I just let the plugin auto update to replace this patch?Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Missing inventory dataI’ve had to post personally identifiable info here to give you the images you needed. I’m not a fan of that, and I can’t edit the post anymore to remove the OneDrive link with the image. Is there a way you can edit this for me to redact?
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Missing inventory dataThanks, that was it!
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Missing inventory dataYou can check the product feed here https://www.whiffletreefarmandnursery.ca/wp-content/uploads/cr/product_feed_698c970274dd6.xml
This issue happens for every item coming from this product feed.
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Missing inventory dataHi
the plugin isn’t limiting the visibility. I am getting this error on every item that I submitted to Merchant Center with this plugin which causes Merchant Center to say the status of the item is Limited
You can view a screenshot here
Forum: Plugins
In reply to: [WooCommerce] Critical issue: Add to Cart broken in WooCommerce 10.5.0@ricardoaraujo330 @frankremmy @warp929 @kampg @steveneray @valuemailer @aljullu
We fixed this on one of our sites by unchecking “Remove Query Strings” in the HTML Settings tab in Litespeed Cache Plugin on LiteSpeed server.
It was loading the file, but it was missing the version.
Forum: Plugins
In reply to: [WooCommerce] sale price stuck on after sale end dateListen, this is unbelievable. You’re clearly using AI to reply to me, and you’re not even reading it before you paste it here. I came here to ask a human a question because I have an issue.
woocommerce_scheduled_sales runs from Action Scheduler once a day, running the cron once a minute has nothing to do with this schedule, and I’ve confirmed three times now that the schedule is running on time once a day. Neither is it possible to set a specific hour when the sale date ends like you are suggesting I do to “test” the sale price issue.
Forum: Plugins
In reply to: [WooCommerce] sale price stuck on after sale end dateSo I can already confirm that there’s no caching causing this, I disabled all object and page caching to test and it wasn’t the issue. I can already confirm that Action Scheduler is running reliably. The time zone is set to my local time zone as well. We really haven’t solved anything yet so far.
Forum: Plugins
In reply to: [WooCommerce] sale price stuck on after sale end dateSo
wc_admin_dailywas missing from Cron Events. I’ve added it back and WooCommerce status now reports a status for Daily Cron.Is this going to fix my sale price issue? The reason I ask is because the
woocommerce_scheduled_saleswas running successfully in Action Scheduler all this time, just that it seemed to be ignoring items that go off sale the day it runs.Forum: Plugins
In reply to: [WooCommerce] sale price stuck on after sale end dateThat doesn’t make sense though, as woocommerce_scheduled_sales shows like it’s Completed every day at the same time through each of these days. I’ve attached the System Status
https://gist.github.com/ms2oo8/2cb10033be4800e7464bc12f2d81e3bb
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Email when replyingThanks for clarifying that. Is there any hooks in the plugin I could use to send an email to the customer myself?
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Email when replyingIn the link you provided it mentions two prerequisites
- The review was submitted via an aggregated review form.
- When replying, you enabled the checkbox to publish a copy of the reply on http://www.cusrev.com portal.
Does this mean that we need a cusrev.com account with reviews hosted on cusrev.com, or does this work with our own self-hosted reviews?
removing this from the Elementor Child theme fixes it for me.
add_action( 'wp_enqueue_scripts', 'hello_elementor_child_enqueue_scripts', 20 )
function remove_hello_elementor_description_meta_tag() {
remove_action( 'wp_head', 'hello_elementor_add_description_meta_tag' );
}
add_action( 'after_setup_theme', 'remove_hello_elementor_description_meta_tag' );- This reply was modified 1 year, 4 months ago by Jan Dembowski. Reason: Formatting
removing this from Elementor Child theme fixes it for me
add_action( ‘wp_enqueue_scripts’, ‘hello_elementor_child_enqueue_scripts’, 20 );
function remove_hello_elementor_description_meta_tag() {
remove_action( ‘wp_head’, ‘hello_elementor_add_description_meta_tag’ );
}
add_action( ‘after_setup_theme’, ‘remove_hello_elementor_description_meta_tag’ );The latest update fixed this now. Thanks!