Search results for: header
Set a Custom Email Header
This snippet sets custom email headers to ensure you can control specific behaviors of your sent…
Set a Custom Reply-To Email
This snippet will ensure all emails sent from your site have the same reply-to email address.…
Set a Custom Email Header (copy)
This snippet sets custom email headers to ensure you can control specific behaviors of your sent…
Enable HTTP Strict Transport Security (HSTS) in WordPress
The provided code snippet is a WordPress function that enables a WordPress site's HTTP Strict Transport…
Removing the Header Image From Notification Emails of Specific Forms
This code snippet hides the header image in notification emails for only a few forms instead…
Add Email Headers
Add headers to Charitable emails (for example CC/BCC headers).
Fix the InvalidInternetMessageHeader Error in Outlook
This snippet will modify specific headers in your emails, which can help resolve this ‘InvalidInternetMessageHeader’ error…
HosaEna Header Solid Transition
(function(){ const header = document.querySelector('.site-header'); function setSolidByScroll(){ if(!header) return; if(window.scrollY > 50){ header.classList.add('he-solid'); } else {…
My Insert widget in header
My own way of Inserting widget in header
Determinar altura del header
jQuery(window).on('elementor/frontend/init', function() { // Elementor tiene su propio evento de carga de componentes jQuery(window).on('load', function() {…
Noindexi tag 2
add_filter('wp_headers', function($headers) { unset($headers['X-Robots-Tag']); // remove noindex header return $headers; });
CSS For Craft Picker
/* General Styles */ body { margin: 0; font-family: 'Arial', sans-serif; background-color: #f9f9f9; color: #333; line-height:…
How to Add BCC to Email Notifications (for all forms)
add_filter( 'wp_mail', function ( $args ) { // Add the BCC email address here $bcc_address =…
Send Site Notifications to a BCC Address
This snippet will ensure all your site’s outgoing emails are also sent to a specific BCC…