Campus Term Helpers

/** * BwC — Campus term helpers * [bwc_campus field=”school_name|location|url”] */ function bwc_campus_shortcode( $atts ) { $atts = shortcode_atts( array( ‘field’ => ‘school_name’, ‘link’ => ‘yes’, ‘new_tab’ => ‘yes’, ‘fallback’ => ”, ), $atts, ‘bwc_campus’ ); $terms = get_the_terms( get_the_ID(),…Continue reading

Disable Deactivation Links

add_filter( ‘plugin_action_links’, ‘disable_all_plugin_deactivation’, 10, 4 ); function disable_all_plugin_deactivation( $actions, $plugin_file, $plugin_data, $context ) { if ( get_current_user_id() !== 1 ) { // Replace 1 with your admin user ID unset( $actions[‘deactivate’] ); } return $actions; }Continue reading

GTranslate language switch – PROD LIBRARY

/* * Snippet #113: GTranslate language switch — auto reload * * GTranslate with url_structure=none sets the googtrans cookie client-side but * does not trigger a page reload. This means PHP-rendered content (e.g. the LTL * banner PDF link) and…Continue reading

Partial Shipment Check

/** * ASA Partial Shipment REST Helper * * Install this snippet on EACH WooCommerce shop that uses * “Partial Shipment for WooCommerce” by WpExperts Hub. * * It exposes a read-only authenticated endpoint: * * /wp-json/wc-asa-partial/v1/outstanding?order_ids=123,124 * * Authentication…Continue reading

Anuario solo 26-27

/** * TECNOFOTO – Restringir páginas por curso/promoción * * Campo ACF del usuario: * curso_academico * * Ejemplo: * /anuario/ => solo curso 26-27 */ add_action( ‘template_redirect’, function() { /* ================================================ * CONFIGURACIÓN * ================================================ */ $restricciones = […Continue reading

INICIO 2027

/** * ============================================================ * TECNOFOTO – ÁREA PERSONAL / INICIO * ============================================================ * * Shortcode: * [tecnofoto_inicio] * * Versión: 2.7 * * ============================================================ */ if ( ! defined( ‘ABSPATH’ ) ) { exit; } /* ============================================================ * 1. CONFIGURACIÓN…Continue reading

ficha visual

/** * SHORTCODE: [ficha_usuario] * * Reglas: * – Sin producto comprado completed: NO ve foto_orla ni foto_birrete. * – paquete-2 / paquete_2 completed: ve foto_orla. * – paquete-3 / paquete_3 completed: ve foto_orla y foto_birrete. * – archivo-1 /…Continue reading

A PHP snippet code to be pasted according to the AI kobee

add_action(‘wp_enqueue_scripts’, function () { if (!is_page(2029)) { return; } wp_enqueue_style( ‘leaflet-css’, ‘https://unpkg.com/[email protected]/dist/leaflet.css’, array(), ‘1.9.4’ ); wp_enqueue_script( ‘leaflet-js’, ‘https://unpkg.com/[email protected]/dist/leaflet.js’, array(), ‘1.9.4’, true ); wp_add_inline_script(‘leaflet-js’, ” document.addEventListener(‘DOMContentLoaded’, function () { const mapElement = document.getElementById(‘treasure-map’); if (!mapElement || typeof L === ‘undefined’) return;…Continue reading