Hide admin nags

.notice .is-dismissable { display: none; } /* In Wordpress, set this to be inserted into the…

EJEMPLO SHORDCODE CON ATRIBUTO

///Shortcode con atritubo //Ejemplo de uso [shorcode_name atributo="Valor Aqui"] echo "el atributo que colocaste es: ";…

Facebook pixel

My Facebook pixel. No additional tracking

alphonso Harvey
<10

Change site url

add_action('init', 'update_site_url_once'); function update_site_url_once() { if (get_option('home') !== 'https://amazingmarvin.com/blog/') { update_option('siteurl', 'https://amazingmarvin.com/blog/'); update_option('home', 'https://amazingmarvin.com/blog/'); } }

Database connection test snippet

A snippet to test the connection to the database.

om.DisplayRules.afterRun

document.addEventListener('om.DisplayRules.afterRun', function(event) { var DisplayRules = event.detail.DisplayRules; var Campaign = event.detail.Campaign; if ( 'YOUR-CAMPAIGN-ID' === Campaign.id…

om.Action.refresh

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

verify

Employee ID Verification Employee ID Verification Employee ID Verify

form autofocus

document.addEventListener('om.Form.autofocus', function(event) { let omForm = event.detail.Form; omForm.autofocus = false; }

1 56 57 58 59 60 125