Search results for: disable

WP Mail SMTP: when using SMTP mailer - disable SSL verification

This is an insecure approach and you most probably should fix your servers' SSL certificates (they…

om-disable-preload-specific-campaigns.js

document.addEventListener('om.Campaign.init.preload', function(event) { var campaign = event.detail.Campaign; // replace {id} with the unique ID of your…

om-disable-preload.js

document.addEventListener('om.Campaign.init.preload', function(event) { event.detail.Campaign.settings.preload = false; });

_MK - SECURITY - Block Author Enumeration

// 🔒 Block ?author=1 user enumeration attempts add_action('init', function () { if (!is_admin() && isset($_GET['author'])) {…

<10

disable OptinMonster campaigns for visitors with specific user roles

function om_docs_hide_optin_for_user_roles( $campaigns ) { // Do nothing if no user is logged in. if (…

disable webfonts for a spesific campaign

document.addEventListener('om.Campaign.init.preload', function(event) { var campaign = event.detail.Campaign; if ({slug} === campaign.id) { campaign.settings.preload = false; }…

disable webfonts

document.addEventListener('om.Campaign.init.preload', function(event) { var campaign = event.detail.Campaign; campaign.settings.preload = false; });

Disable Description Text Sanitization

Don't sanitize campaign description text, useful if you want to allow HTML to be added to…

Create a Custom Shipping Method in WooCommerce

This snippet allows you to create and add a custom shipping method to your WooCommerce store.

Remove Terms Fields

If you would like to enable the terms and conditions, privacy policy and user contact consent…

Disable the delivery of SEO Email Reports

This snippet can be used to disable the delivery of SEO Email Reports.

<10

Enable automatic updates for WordPress core, plugins, and themes

// Enable automatic updates for WordPress core, plugins, and themes add_filter('automatic_updater_disabled', '__return_false'); add_filter('auto_update_core', '__return_true'); add_filter('auto_update_plugin', '__return_true');…

1 10 11 12 13 14 22