Untitled Snippet

google-site-verification=g9wMfW921xePieAMvJ8eCKo4HdXvhwUEJzdrSbJ_HCg

ruba alqahtani
<10

Lang

document.addEventListener("DOMContentLoaded", function() { const flowchart = document.getElementById("flowchart"); flowchart.innerHTML = ` How do you plan to use…

MemberPress: Load All Currently Enqueued Styles In the Courses ReadyLaunch Template

By default, if the ReadyLaunch Courses/Lessons template is enable, the MemberPress Courses add-on won’t enqueue 3rd-party…

MemberPress: Modify "Back to Home" Text And Link on Thank You Page

This snippet changes the text and link of the "Back to Home" button or link (inside…

Custom Availability Date for Products

/** * Availability Date Functionality * * Adds a custom availability date field to WooCommerce products…

<10

Copyright

© Squarer. All rights reserved.

Remove Specific Campaign From Any URLs Containing a Specific URL Path

document.addEventListener('om.Campaign.startShow', function(event) { if(window.location.search.indexOf('shopping-cart') > -1) { // replace shopping-cart wtih your specific URL path var…

om.Campaigns.init

document.addEventListener('om.Campaigns.init', function(event) { // This event is passed the Campaigns object console.log(event.detail.Campaigns); } );

om.DisplayRules.init

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

om.Action.close

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

Revenue Attribution Exclude Campaign

document.addEventListener('om.Campaign.init', function(event) { if ('CAMPAIGN_ID' === event.detail.Campaign.id) { // replace CAMPAIGN_ID with the OptinMonster campaign's unique…

1 193 194 195 196 197 213