Search results for: admin
bos_leaderboard_top6
Displays loyalty points and activity leaders for Best Of Sarasota
Adding a Clear Button to Reset All Fields in Your Form
This code snippet will clear all input fields at once.
Show a Live Count of Repeater Fields in Your Form
This code snippet will display a live count of how many repeater field rows have been…
Una plant Quiz Score Calculator
/** * Author: Sumaiya, Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-25375 * Function to handle quiz submission, calculate results based…
Customize the From Email Address for the Save and Resume Addon
This snippet will customize the from email address that the Save and Resume addon uses when…
How to Store Field Values in the WPForms Entry
/** * Show values in Dropdown, checkboxes, and Multiple Choice. */ add_action( 'wpforms_fields_show_options_setting', '__return_true' ); /**…
class DeleteUploadedFiles {}
The deleteuploadedfiles Class is designed to delete uploaded files subsequent to email notifications. This functionality is…
Count and message according to number of user files
Displays a different message according to how many files a user has in their media library.
om.Campaign.close example
document.addEventListener('om.Campaign.close', function(event) { const url = "http://optinmonster.com"; window.location.href = url; } );
om.Campaign.close
document.addEventListener('om.Campaign.close', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Campaign.startClose
document.addEventListener('om.Campaign.startClose', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Campaign.afterShow
document.addEventListener('om.Campaign.afterShow', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Campaign.load example
document.addEventListener('om.Campaign.load', function(event) { console.log("Congratulations! The " + event.detail.Campaign.id + '-' + event.detail.Campaign.type + " optin has…
om.Campaign.load
document.addEventListener('om.Campaign.load', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Countdown.init
document.addEventListener('om.Countdown.init', function(event) { console.log(event.detail.Countdown); console.log(event.detail.Campaign); } );