/** * ============================================================================ * WORDPRESS SEQUENTIAL VG NUMBER GENERATION FUNCTION * ============================================================================ * @author Gerrit * @description Generates unique sequential numbers using the table’s * auto-increment ID and returns codes like “VG0001”. * @since 2025-11-14 * * FUNCTION NAME TO…Continue reading
/** * ============================================================================ * WORDPRESS UUID GENERATION FUNCTION FOR INKONTAKTSYSTEM * ============================================================================ * @author Sumaiya * @description This function generates a unique UUID in format “xxx_xxx” and * creates a type-prefixed UUID “type_xxx_xxx”. It automatically * inserts the record into…Continue reading
/** * ============================================================================ * FINAL WORDPRESS MULTI-PURPOSE “UPSERT” FUNCTION * ============================================================================ * @description This function provides a dynamic “upsert” (update or insert) * capability for any WordPress database table. It is designed to be * used as a custom function…Continue reading
// Add admin menu page add_action(‘admin_menu’, function() { add_submenu_page( ‘woocommerce’, ‘BACS Subscription Editor’, ‘BACS Subscription Editor’, ‘manage_woocommerce’, ‘bacs-subscription-editor’, ‘render_bacs_subscription_editor_page’ ); }); // Render the page function render_bacs_subscription_editor_page() { ?> BACS Subscription Editor Enter a WooCommerce Subscription ID to view and…Continue reading
/** * Copyright Shortcode * * Outputs copyright text with current year, site name, and Westline Marketing link. * * Usage: [copyright] */ function copyright_shortcode($atts) { // Get current year $current_year = date(‘Y’); // Get site name (WordPress function) $site_name…Continue reading
/** * Plugin Name: HTTPS Doorverwijzing (Internet.nl Compliant) * Description: Forceert HTTPS doorverwijzing volgens NCSC richtlijnen voor Internet.nl test * Version: 1.0 * Author: Pixelsz */ if ( ! defined( ‘ABSPATH’ ) ) exit; /** * 1) Force HTTPS redirect…Continue reading
/** * WPCode Snippet: Auto-Populate Field Details on CPT Sync * Location: Run Everywhere * Priority: 30 */ defined( ‘ABSPATH’ ) || exit; /** * Hook into CPT sync completion */ add_action( ‘gf_form_feeds_sync_complete’, ‘populate_gf_field_details_data’, 10, 2 ); /** * Main…Continue reading
/** * WPCode Snippet: Expose LifterLMS ACF Fields to REST API * Description: Makes LifterLMS module data accessible via Application Password authentication * Location: Run Everywhere * Priority: 15 */ defined( ‘ABSPATH’ ) || exit; /** * Register LifterLMS ACF…Continue reading
/** * WPCode Snippet: Expose Gravity Forms ACF Fields to REST API * Description: Makes Gravity Forms data accessible via Application Password authentication * Location: Run Everywhere * Priority: 15 */ defined( ‘ABSPATH’ ) || exit; /** * Register Gravity…Continue reading
/** * WPCode Snippet: Gravity Forms & Feeds Sync Engine * Description: Manual sync functionality for forms and their feeds * Location: Run Everywhere * Priority: 20 */ defined( ‘ABSPATH’ ) || exit; // Add a manual test button in…Continue reading