om.Html.append.before

document.addEventListener('om.Html.append.before', function(event) { console.log(event.detail.Html); console.log(event.detail.Campaign); } );

om.Optin.init.submit

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

Property Analyzer Demo

// Add Property Analyzer Demo to WordPress function addPropertyAnalyzerDemo() { // Only add on homepage or…

disable webfonts for a spesific campaign

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

css-buttons.css

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

Hindra åtkomst till /wp-admin för prenumeranter

/** * Hindra åtkomst till /wp-admin för prenumeranter */ add_action( 'admin_init', function() { if ( is_user_logged_in()…

ACF_KEYSMST_MSTCASECPT – TAB - MST FIDELITY TRACKING (v3.0 Modular)

/** * ============================================ * MST CASE - TAB: MST FIDELITY TRACKING (v3.0 Modular) * ============================================ *…

ismail daugherty PRO
<10

WpPages_DIR_AA_CPT - WordPress Pages Sync CPT Registration

* Description: Registers custom post type for WordPress pages data with full REST API support *…

ismail daugherty PRO
<10

WPCode Snippet: Download All Snippets Button

* Description: Adds bulk download button to WPCode Snippets Sync admin page * Location: Admin Only…

ismail daugherty PRO
<10

Force localized currency for product feeds

This allows you to change the ISO 4217 for all the product feeds

<10

Allow Subscriptions Product on BOGO and Add Product Search Field

add_filter( 'acfw_product_search_allowed_types' , 'acfw_search_add_support_for_subscription_products' ); function acfw_search_add_support_for_subscription_products( $product_types ) { $product_types[] = 'subscription'; $product_types[] = 'variable-subscription';…

Restrict Dashboard Summary Widget

Prevent specific users (by user ID) from seeing the Easy Digital Downloads Sales Summary widget.

1 63 64 65 66 67 125