mitchellk
Forum Replies Created
-
Does anybody even monitor what’s going on here???
Is there any support whatsoever for this plugin?
Forum: Plugins
In reply to: [Meta for WooCommerce] Product Sync Continually Syncing256 Mb memory for PHP-FPM is not enough for this hungry plugin. I had to eventually assign 2G for it to work. This was confirmed through pure trial and error by constantly upping the mem limit until we found the point where it didn’t break.
Forum: Plugins
In reply to: [Meta for WooCommerce] automatic sync productsI had to assign 2G of Memory to PHP-Fpm for the sync to ever get to completion. This is a very hungry little plugin indeed.
Never mind found the solution here
https://www.nextscripts.com/tutorials/how-to-completely-remove-snap/Wordpress 5.6 Update has fixed it.
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] Disable Price Range on Main Product CatalogNever mind I got it working with my original code which got disabled because I had selected the option “Suppress third party discount plugins”
The code below fixes this on the Catalog page.
add_filter( 'woocommerce_variable_sale_price_html', 'wpm_variation_price_format', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'wpm_variation_price_format', 10, 2 ); function wpm_variation_price_format( $price, $product ) { $min_price = $product->get_variation_price( 'min', true ); $max_price = $product->get_variation_price( 'max', true ); if ($min_price != $max_price){ $price = sprintf( __( 'From: %1$s', 'woocommerce' ), wc_price( $min_price ) ); return $price; } else { $price = sprintf( __( '%1$s', 'woocommerce' ), wc_price( $min_price ) ); return $price; } }Forum: Plugins
In reply to: [Meta for WooCommerce] DISABLE MESSENGER !!!!!!Hi Pit
Sorry I am overloaded with email so have missed any replies. The problem is I uncheck “Enable and customize Facebook Messenger on your store” and it stays checked after saving. The only way right now was to disable your code block as above. But it’s OK for now as I have another messaging app and my hack works for me but this behavior has been like this for several versions of the plugin.
Forum: Plugins
In reply to: [Meta for WooCommerce] BUG: V 2.1.3Hi Jennifer
I will try with the latest update and see what happens.
Regards
MitchellForum: Plugins
In reply to: [Meta for WooCommerce] DISABLE MESSENGER !!!!!!The plugin continually keeps re-enabling Messenger. To disable it permanently until you next update the plugin replace lines 148-183 of facebook-commerce-messenger-chat.php with the following.
if ( facebook_for_woocommerce()->get_integration()->is_messenger_enabled() ) : endif; }Forum: Plugins
In reply to: [Meta for WooCommerce] DISABLE MESSENGER !!!!!!For Anyone else that wants to disable this until the plugin author decides to fix it.
Search for ‘wc_facebook_enable_messenger’ inside your wp_options table using PhpMyAdmin
Edit the line and set
option_value -> no
autoload -> noDo not go back to the Messenger tab on the plugin page inside your wordpress admin or it just re-enables it. Some of the messiest programming I’ve seen.
Forum: Plugins
In reply to: [Meta for WooCommerce] Can not manage connectionSame problem and cannot disable Messenger either.
Forum: Plugins
In reply to: [Meta for WooCommerce] Every update is a nightmare.Same problem here, multiple updates and not one thing is ever fixed.
Forum: Plugins
In reply to: [WP Content Copy Protection & No Right Click] Content CopiedThis plugin is great for physical users trying to steal content but won’t stop bots and content scrapers. Have a look at the Nginx and Apache bad bot blocker projects for this purpose.
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker and
https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blockerI updated to 2.1.1 and all push broken. Went back to 1.17.9 and still not working so I guess their whole API is down despite the status page saying everything is 100% when it’s not. Not one of 500= subscribers being sent any notifications. This happens a LOT with Onesignal.