Revenue Attribution Exclude Campaign
document.addEventListener('om.Campaign.init', function(event) { if ('CAMPAIGN_ID' === event.detail.Campaign.id) { // replace CAMPAIGN_ID with the OptinMonster campaign's unique…
floating-monsterlink-2
Want to get 25,000 unique visitors a month? Click here to learn how
_MK - Last connection
// Enregistre la date de connexion de l'utilisateur function enregistrer_derniere_connexion($user_login, $user) { // Met à jour…
PHP - Custom login
// === CUSTOM LOGIN PAGE === add_action('login_enqueue_scripts', function () { echo ' '; }); // ===…
Mjellma Widget
function custom_dashboard_widget() { echo ' Për cdo pytje rreth webfaqes ju lutem na kontaktoni. Website: Mjellma.al…
SYNC_DIR - Users
/** * WPCode Snippet: WordPress Users Sync - FINAL NO DUPLICATES VERSION * Description: Bulletproof manual…
Universal_UserMetaScholar_Clients_AA - Scholar/Student Meta Fields - KIC Enterprises
WPCode Snippet: Scholar/Student Meta Fields - KIC Enterprises * Description: Additional fields for scholars/students - works…
Cortex Schema API
/** * Cortex Schema API v3.1 - Streamlined Schema Audit with Server-Side Filtering * * Focused…
Apollo Website Tracking
function add_apollo_tracker() { ?>
Replace Menu Icon
Replace the standard menu icon in Easy Digital Downloads with an icon from Dashicons
Force Minimum Password Length at Checkout
Force a minimum password length when a customer creates an account at checkout
Add a document file upload
// Add the document field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_doc_uploader'); function wcv_doc_uploader( ){ if…
Enable product images in vendor order email notifications
add_filter( 'wcvendors_vendor_order_items_args', 'wcv_enable_product_image_vendor_order_email' ); function wcv_enable_product_image_vendor_order_email( $order_item_args ){ $order_item_args['show_image'] = true; return $order_item_args; }