binarystarr
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Wordfence problem+1 interested in feedback
Forum: Plugins
In reply to: [Ultimate Member - reCAPTCHA] Recaptcha ErrorWe’re using the v3 recaptcha and constantly get the ‘Error: It is very likely a bot.’ The score checker here https://antcpt.com/score_detector/ shows a 0.9 so it should be fine
Forum: Plugins
In reply to: [W3 Total Cache] 2.1.3 breaks s3Thanks for the quick response Marco – not sure how to -re-authorize AWS i’ve simply entered details of the bucket, access key, secret key etc.
We’re on php 7.4.24
Upgraded to 2.1.6 and the test s3 upload fails ??
Forum: Plugins
In reply to: [WooCommerce] Removing Sort by on WooCommerce Shop PageIf you’re using storefront you’ll need to adjust the actions that it adds after the theme is setup. Use the below to remove the entire section.
See storefront/inc/woocommerce/storefront-woocommerce-template-hooks.php for more info.
add_action('after_setup_theme', 'remove_actions', 10); function remove_actions(){ remove_action( 'woocommerce_before_shop_loop', 'storefront_sorting_wrapper', 9 ); remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 ); remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); remove_action( 'woocommerce_before_shop_loop', 'storefront_woocommerce_pagination', 30 ); remove_action( 'woocommerce_before_shop_loop', 'storefront_sorting_wrapper_close', 31 ); }
Forum: Plugins
In reply to: [W3 Total Cache] Deleting from s3 when deleted from libraryThanks Marko!
Forum: Plugins
In reply to: [W3 Total Cache] Deleting from s3 when deleted from libraryAh, i understand.
The image no longer shows on the site but it is still in the s3 bucket. That makes it an orphan, something i am not keen on.
I guess this could be solved with some custom code that hooks into the?‘delete_attachment’ hook?
Forum: Plugins
In reply to: [W3 Total Cache] Deleting from s3 when deleted from libraryThank you Marko for such a swift response.
The “Only purge CDN manually” option is not selected so if i understand you correctly the system should be deleting from s3?
Forum: Plugins
In reply to: [Easy Modal] Responsive Option doesn't workHi, just to note, I also got confused by this.
Thanks for posting – it confirmed that these are the only tables to worry about and nothing sits anywhere else in the db.
When exporting i simply selected the tables i grabbed 4 tables (mtouchquiz_answer, mtouchquiz_question, mtouchquiz_quiz, mtouchquiz_ratings) by selecting them then exported in one go with the “drop if exists” option checked.
Importing that sql worked fine.