Search results for: admin
om.Form.validate
document.addEventListener('om.Form.validate', function(event) { // ...custom validation code here if (validateError) { event.detail.Form.errors.validate.push('This is the error message')…
om.Optin.init
document.addEventListener('om.Optin.init', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); // This event is…
om.Campaign.changeView.done
document.addEventListener('om.Campaign.changeView.done', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Campaign.changeView
document.addEventListener('om.Campaign.changeView', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Campaign.afterCleanup
document.addEventListener('om.Campaign.afterCleanup', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Campaign.cleanup
document.addEventListener('om.Campaign.cleanup', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
om.Campaign.afterClose example
document.addEventListener('om.Campaign.afterClose', function(event) { if (event.detail.Campaign.id === "CAMPAIGN_ID") { // Add your own logic to play video…
om.Campaign.afterClose
document.addEventListener('om.Campaign.afterClose', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); } );
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' ); /**…