Search results for: disable
PageTemplate_Universal - GRAVITY FLOW EMBED TEMPLATE
Version: 1.1.0 7 * Author: Portal Blueprint 8 * Compatible with: Gravity Flow 2.8+, BuddyBoss, Divi,…
Fixing WPForms Bulk Update Issues with WP Umbrella
This code snippet will force the WPForms updater to run during the WP Umbrella snapshot request.
RAVER DOGS - HEADER V2 STYLESHEET
/* ================================================================= RAVER DOGS - HEADER V2 STYLESHEET ================================================================= */ /* --- 1. Global & Body…
Disabling the Admin Bar for Non-Admin Users
add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }
Disable & Remove Login with GD button
Remove Login with GD
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; });
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…