Untitled Snippet

صحتنا | حاسبة السعرات صحتنا خطتك تبدأ بخطوة توازن يدوم اعرف احتياجك. واصنع عاداتك. حاسبة ذكية تمنحك نقطة بداية واضحة للسعرات، مؤشر كتلة الجسم، وخطة يومية عملية تناسب هدفك. حاسبة شخصية أدخل بياناتك لنرسم طريقك الصحي الاسم (اختياري) الجنس ذكرأنثى…Continue reading

[Fluent Forms] Country Smart Code

/** * Fluent Forms — Geolocalización de leads (compatible con page cache / WP Rocket) * * IMPORTANTE: el país/código ya NO se calcula al renderizar la página (GET, * cacheable por WP Rocket), sino al procesar el envío del…Continue reading

Inversiones Festidram (copy)

{ “@context”: “https://schema.org”, “@type”: [“EventVenue”, “LocalBusiness”], “name”: “Inversiones Festidram”, “description”: “Servicios integrales de festejos, alquiler de toldos, estructuras, tarimas y mobiliario para eventos.”, “url”: “https://www.tusitioweb.com”, “logo”: “https://www.tusitioweb.com/logo.png”, “image”: [ “https://www.tusitioweb.com/images/evento1.jpg”, “https://www.tusitioweb.com/images/toldos.jpg” ], “address”: { “@type”: “PostalAddress”, “addressLocality”: “Carrizal”, “addressRegion”: “Miranda”,…Continue reading

Inversiones Festidram

{ “@context”: “https://schema.org”, “@type”: [“EventVenue”, “LocalBusiness”], “name”: “Inversiones Festidram”, “description”: “Servicios integrales de festejos, alquiler de toldos, estructuras, tarimas y mobiliario para eventos.”, “url”: “https://www.tusitioweb.com”, “logo”: “https://www.tusitioweb.com/logo.png”, “image”: [ “https://www.tusitioweb.com/images/evento1.jpg”, “https://www.tusitioweb.com/images/toldos.jpg” ], “address”: { “@type”: “PostalAddress”, “addressLocality”: “Carrizal”, “addressRegion”: “Miranda”,…Continue reading

Next and Previous MLL Post

add_filter( ‘etch/dynamic_data/post’, function( $data, $post_id ) { $prev = get_previous_post(); $next = get_next_post(); $image_size = ‘medium’; $data[‘prev_post’] = $prev ? [ ‘title’ => html_entity_decode( get_the_title( $prev ), ENT_QUOTES, ‘UTF-8’ ), ‘permalink’ => get_permalink( $prev ), ‘thumbnail’ => get_the_post_thumbnail_url( $prev->ID, $image_size…Continue reading

Account Dashboard Welcome Text Override

/** * LexiPress: Account Dashboard Welcome Text Override * Intercepts the native WooCommerce string to remove the “billing address” mention * and aligns the copy with the premium D2C digital vault aesthetic. */ if ( ! defined( ‘ABSPATH’ ) )…Continue reading

Custom Login Page Typographical Injector

/** * LexiPress: Custom Login Page Typographical Injector */ if ( ! defined( ‘ABSPATH’ ) ) { exit; } // 1. Inject “Welcome Back” Header add_action( ‘woocommerce_before_customer_login_form’, ‘lexipress_custom_login_header’ ); function lexipress_custom_login_header() { echo ‘ ‘; echo ‘ Welcome Back ‘;…Continue reading

Lock Registration to Checkout Only

/** * LexiPress: Lock Registration to Checkout Only */ if ( ! defined( ‘ABSPATH’ ) ) { exit; } // Disables the Sign Up form on the /account-settings/ page add_filter( ‘option_woocommerce_enable_myaccount_registration’, ‘__return_false’, 999 );Continue reading

Disable Action Scheduler Default Queue Runner

if ( ! function_exists( ‘rd_disable_action_scheduler_default_runner’ ) ) { function rd_disable_action_scheduler_default_runner() { if ( class_exists( ‘ActionScheduler’ ) ) { remove_action( ‘action_scheduler_run_queue’, array( ActionScheduler::runner(), ‘run’ ) ); } } } add_action( ‘init’, ‘rd_disable_action_scheduler_default_runner’, 10 );Continue reading