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.…

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…

20+

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…

_MK - SECURITY - Disable XML-RPC-API

// Disable XML-RPC add_filter( 'xmlrpc_enabled', '__return_false' ); // Block access to xmlrpc.php via .htaccess equivalent (Apache…

<10

My Insert widget in header

My own way of Inserting widget in header

Noindexi tag 2

add_filter('wp_headers', function($headers) { unset($headers['X-Robots-Tag']); // remove noindex header return $headers; });

Teddy James
<10

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 =…

30+

Send Site Notifications to a BCC Address

This snippet will ensure all your site’s outgoing emails are also sent to a specific BCC…

RT7 Official - Maintenance Mode

RT7 Official Maintenance Mode

<10

How to Add BCC to Email Notifications (for specific form)

/** * Add BCC recipients to specific form email notifications. * * @link https://wpforms.com/docs/how-to-add-bcc-to-email-notifications/ */ add_filter(…

<10

Change Section Headers Per Campaign

Change the section headers in the donation form.

1 2 3 33