stevesand
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] FB for WooCommerce slowing down our websiteCan report the same issue.
Website shoots up from 1.5sec to 12s with this plugin enabled. If we turn it of we break the advertising. If we turn it on we break the webshop.
Nightmare during Black Week. What should we do?Hi, thank you for your reply.
But shouldn’t this be considered a high-priority fix? This issue can have serious consequences for users, syncing non-existent or secret products to Google Merchant Center and Google Ads. And wasting ad spend on 404 pages, worst case resulting in account suspensions for showing incorrect products in Google Ads?
Just noticed I have many private products synced to my Merchant Center since the last update, dont know yet how much money was spent on this, which is quite concerning. I can downgrade, but then the next auto update will bring the problem back.
I’d appreciate any guidance on a permanent solution. Thank you for your help!Hi again.
After spending some hours I found the bug in your update script.
You have a fantastic plugin, better than the competitors, but please please be more careful with your updates, this is the 4-5 time in the last 6 months that this plugin crashed from an update and my whole business goes down.
In your file:
Version_13_3_5_Update.php
This is only migrating the main site in a multisite setup, not taking other sites into account.
Your update function should look something like this:public function run() { // Check if we are in a multisite installation if (is_multisite()) { // Get all blogs/sites in the multisite $sites = get_sites(); // Loop through each site foreach ($sites as $site) { // Switch to the subsite switch_to_blog($site->blog_id); // Perform the version check for each subsite if ( ( version_compare(get_option(WOOCOMMERCESEA_OPTION_INSTALLED_VERSION), $this->version, '<=') || ! get_option(WOOCOMMERCESEA_OPTION_INSTALLED_VERSION) ) || $this->force_update ) { $this->update(); } // Restore the current site after the update restore_current_blog(); } } else { // Single-site update logic remains the same if ( ( version_compare(get_option(WOOCOMMERCESEA_OPTION_INSTALLED_VERSION), $this->version, '<=') || ! get_option(WOOCOMMERCESEA_OPTION_INSTALLED_VERSION) ) || $this->force_update ) { $this->update(); } } }
HELLO Product Feed Pro??
This is a critical issue, crashed 5 of my websites so far.
Setup: Multisite, only main site works after update as Eric described above.I get the same error, crashing the whole site. Also running multisite.
Forum: Themes and Templates
In reply to: [Astra] Remove transition from the woocommerce gallery.Hi, thank you for the reply.
I have only tested it on iPhone, not on other mobile OS′s, but the CSS transition will make the swiping “freeze” or break for a short while until proceeding to the next picture, and sometimes jump back to the previous picture instead of proceeding. It sometimes requires multiple swipes to get to the next picture.
Probably an iOS-bug but it feels like:
* you start the swipe
* The transition takes over and interrupts the touch events
* The image goes back to the prev because the touch / swipe event was interrupted by the cubic-bezier animation.
When overriding the transiation it will transition fluent and require shorter swipes to move to the next picture.Hi. We have rolled back and used 13.1.2 since this bug came in 13.1.13. Our wordpress was auto updated today and the bug was back again, dropping all our products from Merchant Center again. Is there a planned fix?
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] 4.6.0 will crash the layoutSame here. New update crashes site.
Uncaught Error: Undefined class constant ‘ATTR_TEMP’
/plugins/advanced-dynamic-pricing-for-woocommerce/BaseVersion/Includes/Core/RuleProcessor/RuleSetCollector.php on line 279Hi, the bug is still present unfortunately.
And a tip to the topic creator to get up and running until they fix this. I just rolled back to 13.1.2 to get our merchant feeds working again quickly.
You can do that by going to the bottom of this page, download it and install it manually:
https://www.ads-software.com/plugins/woo-product-feed-pro/advanced/- This reply was modified 1 year, 2 months ago by stevesand.
We are having the same bug with all .csv-feeds. Instead of empty values it removes the columns that has empty values like for example sale_price. Leading to columns being wrongly sorted and the same Google Merchant error as the topic creator. All of our Google feeds are currently down due to this bug in latest version.
Forum: Themes and Templates
In reply to: [Astra] Scroll messes with checkoutHi.
Yes I can, but where can i send it?
Thank you.Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand is showing product descriptionThank you, love the plugin and your quick support.
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand is showing product descriptionHi, we updated the plugin yesterday and the bug came back. We manually fixed it before but it was overwritten by the update.
It is a conflict with Elementor. “The_content” is overridden when using Elementor for product descriptions.
The filter “the_content” fills no purpose where it is placed in PWB at the moment and it leads to problems since it is scope dependent and has conflicts when used with other plugins. “The_content” is used for “read more text” for blog posts which is not supported by PWB anyway so why not just remove it?
We have changed the file, class-pwb-product-tab.php:
$content = the_content($brand->description);
$content = $brand->description;More info here:
https://developer.www.ads-software.com/reference/functions/the_content/Thank you for a great plugin.
- This reply was modified 2 years, 4 months ago by stevesand.
Forum: Plugins
In reply to: [Default Attributes for WooCommerce] Gallery thumbnails breaksUpdate:
Tried to set a default variation with Woocommerce native settings and this plugin disabled. The same bug happend. So it is a Woocommerce bug rather than a pugin bug when using default variations.