/** * 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
{ “@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
{ “@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
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
/** * 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
/** * 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
/** * 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
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
/** * LexiPress: Hide “Account” Menu for Guests * Completely strips the Account dropdown for logged-out ad traffic. */ if ( ! defined( ‘ABSPATH’ ) ) { exit; } add_filter( ‘wp_nav_menu_objects’, ‘lexipress_hide_account_menu_for_guests’, 999, 2 ); function lexipress_hide_account_menu_for_guests( $items, $args )…Continue reading