/** * Auto-delete FluentCommunity posts from a specific space * after a delay using WP-Cron. * * Use in WPCode / Code Snippets as a PHP snippet and run everywhere. */ if (!defined(‘ABSPATH’)) { exit; } /* |————————————————————————– | Constants…Continue reading
/** * ============================================================ * Cart Page — Security Trust Badge Bar * ============================================================ * * PURPOSE: Adds a clean trust badge row below the “Proceed to * Checkout” button on the cart page to increase * conversion confidence. * *…Continue reading
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
/** * ============================================================ * Hide Duplicate Astra Header on Checkout * ============================================================ * * PURPOSE: Hides the default Astra #masthead header and the * gray shadow box around the checkout page title. * Spectra-built custom header remains visible. * *…Continue reading
/* * Snippet #48: Homepage/PGs of the world – ArcGIS API / MySQL fallback PG stats – create shortcodes – PROD LIBRARY * Type: php * Location: frontend_only * Tags: stats * Modified: 2026-01-30 21:09:27 */ /** * ArcGIS People…Continue reading
/** * ============================================================ * GUARDEDPAY PRO — Phase 4: FAQ Accordion * ============================================================ * * PURPOSE: Adds 4 FAQ accordion items inside the GuardedPay * payment box, below the gray compliance widget. * Addresses top 4 customer concerns per v3.0…Continue reading
/** * ============================================================ * GUARDEDPAY PRO — Phase 2: Heading + Trust Badges (v2) * ============================================================ * * PURPOSE: Injects “Complete Your Order” heading, supporting text, * and trust badges INSIDE the GuardedPay payment method * area — between the…Continue reading
/** * Save registration fields in custom user meta keys * and show them in the WordPress Users list. */ add_action(‘user_register’, function ($user_id) { if (!$user_id) { return; } $field_map = array( ‘account_type’ => ‘account_type’, ‘afm’ => ‘afm’, ‘phone_1’ =>…Continue reading