MemberPress: Customize Unauthorized Message For Logged-Out Non-Authorised User and a Logged in Non-Authorised User

This snippet customizes the unauthorized message shown to users who attempt to access content protected by…

MemberPress: Shortcode To Display Manage Sub-Accounts Link

The code snippet registers a new shortcode: [mepr-subaccount-link]. Adding this shortcode will display the manage sub-accounts…

Máscara CPF

// Carrega a biblioteca Inputmask var script = document.createElement('script'); script.src = "https://cdnjs.cloudflare.com/ajax/libs/jquery.inputmask/5.0.8/jquery.inputmask.min.js"; script.onload = function ()…

Display Page/Post ID

This snippet can be used to display Page/Post ID in the Admin Dashboard. Adds option to…

Stripe 2 Registration Form Update

Formidable Forms - When a Stripe payment is successful on the Stripe Payment form I want…

Harry Abell
<10

Fluent form date error

{"code":"qm_fatal","message":"Uncaught Exception: Failed to parse time string (30/05/2025) at position 0 (3): Unexpected character in /var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/apps/tables/class-flowmattic-tables.php…

<10

om.Analytics.init

document.addEventListener('om.Analytics.init', function(event) { console.log(event.detail.Analytics); console.log(event.detail.Campaign); } );

om.Ruleset.init

document.addEventListener('om.Ruleset.init', function(event) { console.log(event.detail.Ruleset); // An array of the Group objects console.log(event.detail.Ruleset.groups); console.log(event.detail.Campaign); } );

om.Action.window

document.addEventListener('om.Action.window', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); // This event is…

disable webfonts

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

trigger spesific monsterlink on hover

jQuery(document).ready(function($){ // Change 'rt78pcbzrddo1y7w0yq3' to match your specific campaign slug var campaignSlug = 'rt78pcbzrddo1y7w0yq3'; // When…

om-custom-redirect-all-close.js

jQuery(document).ready(function($){ function omRedirect() { var url = "https://optinmonster.com"; $(location).attr('href',url); } $(document).on('OptinMonsterOnClose', function(event, data, object){ omRedirect(); });…

css-buttons.css

html div#om-{{id}} input[type=submit], html div#om-{{id}} button { background: #ff6600 !important; }

Remove Specific Campaign Based on the Referral URL- v1

document.addEventListener('om.Campaign.startShow', function(event) { if(document.referrer.search.indexOf('google.com') > 0) { // replace with the specific referral domain var optinCampaign…

1 91 92 93 94 95 212