CSS-Anpassungen blue-theme

/* Version 1.0.1 */ /* ================================================================ * Fix: Frame/Tandem-Ad Sichtbarkeit im Leaderboard-Slot * ================================================================ */ /* Hauptfix: Bilder im Leaderboard-Modul von max-width befreien */ .module–ad.module–ad–leadboard img { max-width: none !important; } /* Overflow auf der Modul-Kette sicherstellen */ .content–wrapper {…Continue reading

FluentCommunity Auto-Delete Diagnostics

/** * PN FluentCommunity Auto-Delete Diagnostics * No debug.log required */ if (!defined(‘ABSPATH’)) { exit; } /* |————————————————————————– | Enable main snippet internal logs too |————————————————————————– */ add_filter(‘pn_fcom_enable_debug_log’, ‘__return_true’); /* |————————————————————————– | Constants |————————————————————————– */ if (!defined(‘PN_FCOM_DIAG_OPTION’)) { define(‘PN_FCOM_DIAG_OPTION’, ‘pn_fcom_diag_entries’);…Continue reading

Untitled Snippet

function youtube_dashboard() { $api_key = “AIzaSyBzzf22Vs5sMf1eoCuhN3-0Qtnj0EKu7Bk”; $channel_id = “102319916649-hmjdaecid7f96ql384nd80ie8mn13fjj.apps.googleusercontent.com”; // ganti channel kamu $url = “https://www.googleapis.com/youtube/v3/channels?part=snippet,statistics&id=$channel_id&key=$api_key”; $response = wp_remote_get($url); if (is_wp_error($response)) { return “Error ambil data”; } $body = json_decode(wp_remote_retrieve_body($response), true); $data = $body[‘items’][0]; $title = $data[‘snippet’][‘title’]; $subs = $data[‘statistics’][‘subscriberCount’];…Continue reading

Risikoanalyse Formular

/** * Gewerbe Risikoanalyse Formular * Shortcode: [risikoanalyse_formular] * WPCode-kompatibel * CSS/JS sauber per wp_enqueue eingebunden */ if (!defined(‘ABSPATH’)) { exit; } if (!defined(‘GVS_RA_TABLE’)) { define(‘GVS_RA_TABLE’, ‘gvs_risikoanalyse_anfragen’); } /** * DB-Tabelle anlegen */ if (!function_exists(‘gvs_ra_maybe_create_table’)) { add_action(‘init’, ‘gvs_ra_maybe_create_table’); function gvs_ra_maybe_create_table()…Continue reading

aa

add_action(‘admin_notices’, function () { if (!current_user_can(‘manage_options’)) { return; } echo ‘ WPCode test is working. ‘; echo ‘ Application Passwords Global: ‘ . (wp_is_application_passwords_available() ? ‘YES’ : ‘NO’) . ‘ ‘; if (function_exists(‘wp_is_application_passwords_available_for_user’)) { $user = wp_get_current_user(); echo ‘ Application…Continue reading

Untitled Snippet

PIPAS — Biennale de Photographie Genève PIPAS À propos Pratique 24 22 PIPAS Biennale de Photographie des écoles · Genève · Par et pour les élèves Prochaine édition — 27 mai au 14 juin 2026 · Ecoquartier Jonction · Plaine…Continue reading

WPBakery Collapse All Rows

(function($) { ‘use strict’; /** * WP Bakery – Collapse / Expand All Rows (v3) * Fixed: injects buttons into the correct visible navbar list position * Fixed: iterates ROWS not individual toggles (avoids multi-click cancellation) */ function getFirstToggle(rowEl) {…Continue reading