om.Listeners.init

document.addEventListener(‘om.Listeners.init’, function(event) { console.log(event.detail.Listeners); console.log(event.detail.Campaign); } );Continue reading

om.Iframes.init

document.addEventListener(‘om.Iframes.init’, function(event) { console.log(event.detail.Iframes); console.log(event.detail.Campaign); } );Continue reading

Add Donor Comments To Donor Wall

add_action(‘charitable_donor_loop_after_donor’, ‘example_charitable_donor_loop_after_donor’, 10, 2 ); function example_charitable_donor_loop_after_donor( $donor, $view_args ) { $user_id = $donor->get_user_id(); $campaign_id = ! empty ( $view_args[‘campaign’] ) ? $view_args[‘campaign’] : 0; if ( 0 === $campaign_id ) { return; } $args = array( ‘user_id’ => $user_id,…Continue reading

EXOP Consulting 2025

{ “data”: [ { “event_name”: “Purchase”, “event_time”: 1748569223, “action_source”: “website”, “user_data”: { “em”: [ “7b17fb0bd173f625b58636fb796407c22b3d16fc78302d79f0fd30c2fc2fc068” ], “ph”: [ null ] }, “attribution_data”: { “attribution_share”: “0.3” }, “custom_data”: { “currency”: “USD”, “value”: “142.52” }, “original_event_data”: { “event_name”: “Purchase”, “event_time”: 1748569223 }…Continue reading

MemberPress: Generate All Invoices

function generate_bulk_invoices() { if( isset( $_REQUEST[ ‘generate-invoices’ ] ) ) { global $wpdb; $query = “SELECT id FROM {$wpdb->prefix}mepr_transactions WHERE status in (‘complete’, ‘confirmed’, ‘refunded’)”; $txn_ids = $wpdb->get_results( $query ); foreach( $txn_ids as $txn_id ) { $invoices = new MePdfInvoicesCtrl();…Continue reading

JSON-LD for 25 foot Beam Press Release

{ “@context”: “https://schema.org”, “@type”: “NewsArticle”, “mainEntityOfPage”: { “@type”: “WebPage”, “@id”: “https://easilymovedequipment.com/easily-moved-equipment-unveils-25-foot-5-tonne-aluminum-beam-for-high-capacity-gantry-cranes-80-lighter-than-steel/” }, “headline”: “Easily Moved Equipment Unveils 25-Foot, 5-Tonne Aluminum Beam for High-Capacity Gantry Cranes – 80% Lighter than Steel”, “description”: “Easily Moved Equipment (EME) introduces a revolutionary 25-foot, 5-tonne…Continue reading

eme FAQ Overview

{ “@context”: “https://schema.org”, “@type”: “FAQPage”, “mainEntity”: [ { “@type”: “Question”, “name”: “Can the eme Gantry Crane be moved while under load?”, “acceptedAnswer”: { “@type”: “Answer”, “text”: “Yes, every eme Gantry Crane can be moved while under its full-rated lifting capacity.”…Continue reading

Activer automatiquement Elementor Pro

add_action(‘init’, function () { $extensions = [ ‘elementor/elementor.php’, ‘elementor-pro/elementor-pro.php’ ]; foreach ( $extensions as $extension ) { if ( !is_plugin_active( $extension ) && file_exists( WP_PLUGIN_DIR . ‘/’ . $extension ) ) { activate_plugin( $extension ); } } });Continue reading

Activer Elementor Pro + Traduction + FluentCRM

add_action(‘init’, function () { $extensions = [ ‘elementor-pro/elementor-pro.php’, ‘translatepress-multilingual/translatepress.php’, ‘fluent-crm/fluent-crm.php’ ]; foreach ( $extensions as $extension ) { if ( !is_plugin_active( $extension ) && file_exists( WP_PLUGIN_DIR . ‘/’ . $extension ) ) { activate_plugin( $extension ); } } });Continue reading