denialdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Organiser] Security alert on Event Organizer by WordFenceUpdate the version number on the plugin and the Wordfence warning will go away.
Forum: Plugins
In reply to: [Event Organiser] Security alert on Event Organizer by WordFenceIf anyone wants to manually patch their version of this plugin the affected file is: includes/event-organiser-ajax.php
Add the following code on line 305
if ( ! current_user_can( 'edit_events' ) ) {
wp_send_json_error( array( 'message' => __( 'You do not have permission to access this.', 'eventorganiser' ) ), 403 );
}And this on line 715
if ( ! current_user_can( 'manage_event_venues' ) && ! current_user_can( 'edit_events' ) ) {
wp_send_json_error( array( 'message' => __( 'You do not have permission to access this.', 'eventorganiser' ) ), 403 );
}- This reply was modified 4 months, 4 weeks ago by denialdesign.
Thanks for the fast response. Sorry I should have read the whole article!
Stripe is working properly now.
I have the exact same issue. I added a filter as described in your tutorial but it does not work. The data-handle was “stripe” (unsurprisingly). Perhaps Stripe is not being excluded because it loads from an external URL? For now I have disabled combining JS.
Thank you kindly!
Thanks. I hadn’t spotted the content block. I didn’t see it in the documentation either.
Is there a limit to the number of fields per form? I’ve added content blocks in each row of my form and they keep randomly disappearing when I save. If I add one back in another one disappears.
Edit: I made a copy of the registration form and edited that and that seemed to fix the problem.
- This reply was modified 8 months ago by denialdesign.
Sorry. I found the issue. I had the Cart Simulation disabled with this code in my functions file.
add_filter( 'woocommerce_paypal_payments_simulate_cart_enabled', '__return_false' );
add_filter( 'woocommerce_paypal_payments_simulate_cart_prevent_updates', '__return_false' );Almost there! It doesn’t work with values below 1, it just snaps back to 1.
For example, my base font size is 16px, I want to set the “name” to be 14px or 0.825rem but the font size is resetting itself to 1rem. Anything over 1rem works (1.25, 1.75, etc).
Forum: Plugins
In reply to: [WooCommerce] Spammed with 70 failed orders?Hi, this has been happening to a lot of other sites recently. See this thread for more information:
https://wordpress.org/support/topic/attcked-by-card-testing-decline-orders-with-origin-unknown/
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Package Tracking – Set default carrierThanks, Royal Mail is listed, but it’s (incorrectly) under the Polish carriers in your documentation and under “Global” in the dropdown list.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Attacked by “card testing” – “origin unknown”Thanks @inpsydekrystian I will check the settings.
reCAPTCHA does not stop the attacks through the API. I have tested it on a different site.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Attacked by “card testing” – “origin unknown”Here’s the PayPal logs from the last day one of my clients was attacked.
https://privatebin.syde.com/?d2c7e8f987621ba1#GvfR9sybymFTCAT3D4W3K4tApwFBUznmNueypFqPWWHX
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Attacked by “card testing” – “origin unknown”Glad the code snippet is working for you guys too. Hopefully PayPal or Woo can provide a better fix shortly.
Forum: Plugins
In reply to: [WooCommerce] Bot attackI’ve been looking in to this for the last few days for clients of mine. ReCAPTCHA and disabling guest checkout do nothing. It appears the orders are being placed by the API so if you can restrict access to wp-json without harming other parts of your store then that might help.
Forum: Plugins
In reply to: [Max Mega Menu] Best Selling Product In MenuThat’s brilliant, thank you.