Maarten
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Bug with 3.8.3 versionThis happens on the homepage if you’ve set a static page as homepage. The notice comes from the call to is_shop() in YITH_WCAN_Frontend->the_posts().
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] 26,000 Spam Newsletter Signups@lickthespoon you can look in the apache log for IP-adressses that POST to /wp-admin/admin-ajax.php repeatedly. If you haven’t deleted all spam subscribers yet you could also look them up in the table wp_wysija_user which has a column IP.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] 26,000 Spam Newsletter SignupsI’ve also had this problem and I my case all the spam signups came from 5.188.203.23 Blocking this IP has stopped the signups, for now. (It didn’t stop the spammer from trying 10.000 times per day….)
Hi @dilusionz,
I had the same problem and found this tutorial.
To make it work you would need to alter the html, this can be done using the following filter:
add_filters( 'caldera_forms_render_field_type-checkbox', function( $field_html ) { $field_html = preg_replace( '/<input(.*?)>/', '<input$1><div class="control-indicator"></div>', $field_html ); return $field_html; } );
You can see the result on the form at the bottom of this page
Forum: Plugins
In reply to: [Safe Redirect Manager] Maximum Limit reachedIf you have a child theme or functionality plugin you can use the following filter to change the redirect limit:
add_filter( 'srm_max_redirects', function() { return 250; } );
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Soft 404 errors in google webmasterHi johson,
You can tell Google Webmaster to ignore certain query parameters here: https://www.google.com/webmasters/tools/crawl-url-parameters
For each parameter you can both specify what it does (reorder, filter) and whether Google should index them.