bhat
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Reviews
In reply to: [Contact Form 7] form broke after updating the contact from 7Add
define('WPCF7_AUTOP', false ); //contact form 7 remove auto <p> tagWorked for me.
http://www.stickabat.com/article/19/contact-form-7-57-update-gives-you-space-between-form-feildsForum: Reviews
In reply to: [Contact Form 7] Version 5.7 breaking formsAdd define(‘WPCF7_AUTOP’, false );
to wp-config.php which will save your day.http://www.stickabat.com/article/19/contact-form-7-57-update-gives-you-space-between-form-feilds
- This reply was modified 3 years, 5 months ago by bhat.
Forum: Plugins
In reply to: [Contact Form 7] Checkbox validation problem since last updatesYep it’s still there even in 5.7.
You simply add the space string there, which will do the trick.<label class=”d-flex”>
[checkbox* gdpr ” “]
<span class=”pl-2”>stickabat.com</span>
</label>http://www.stickabat.com/article/18/the-field-is-required-wordpress-plugin-issue-after-an-update
Thanks Lucas you saved my day !
function add_my_custom_presenter( $presenters ) { $presenters_to_remove = ['Locale_Presenter']; for($x=1; $x<=sizeof($presenters); $x++) { $classname = substr(get_class($presenters[$x]), strrpos(get_class($presenters[$x]), "\\")+1); if(in_array($classname, $presenters_to_remove)) { unset($presenters[$x]); } } return $presenters; } add_filter( 'wpseo_frontend_presenters', 'add_my_custom_presenter' );
Viewing 5 replies - 1 through 5 (of 5 total)