Onemoguci mail provjeru – WP Forms

/** * Disable the email address suggestion. kada npr mi predloži umjesto besoft.hr da je besoft.fr itd itd * * @link https://wpforms.com/developers/how-to-disable-the-email-suggestion-on-the-email-form-field/ */ add_filter( ‘wpforms_mailcheck_enabled’, ‘__return_false’ );Continue reading

Block WPCode Conversion Pixels Facebook

add_filter(‘wpcode_get_snippets_for_location’, function( $snippets, $location) { if ( ‘site_wide_header’ !== $location ) { return $snippets; } // Let’s remove any snippet with the id of pixel_facebook. $snippets = array_filter( $snippets, function( $snippet ) { return ‘pixel_facebook’ !== $snippet->id; } ); return…Continue reading