Print Invoice – Keep Untouched Template Labels Translatable

/** * Print Invoice & Delivery Notes: keep untouched template labels translatable * * WPCode: PHP Snippet, Insert Method “Auto Insert”, Location “Run Everywhere”. * * Templates::all() (includes/helpers/class-templates.php) merges the saved wcdn_template_settings * over defaults built with __() at request…Continue reading

Gravity SMTP – BCC All Emails to Archive

/** * Gravity SMTP: BCC every outgoing email to the archive mailbox * * WPCode: PHP Snippet, Insert Method “Auto Insert”, Location “Run Everywhere”. * * Hooks gravitysmtp_after_connector_init, which only Gravity SMTP fires: once per send attempt, * from Connector_Base::init()…Continue reading

[TEMP BUG FIX] Meta for WooCommerce WC 11 Save Bridge

function rd_register_meta_woocommerce_11_save_bridge() { if ( ! defined( ‘WC_VERSION’ ) || ‘11.1.2’ !== WC_VERSION || ! function_exists( ‘facebook_for_woocommerce’ ) ) { return; } add_action( ‘woocommerce_admin_process_product_object’, ‘rd_schedule_meta_product_sync_on_wc_11’, 40 ); } add_action( ‘plugins_loaded’, ‘rd_register_meta_woocommerce_11_save_bridge’, 20 ); function rd_schedule_meta_product_sync_on_wc_11( $product ) { if (…Continue reading

Terraform file

terraform { required_providers { stripe = { source = “stripe/stripe” version = “0.1.3” } } } provider “stripe” { # API key is read from STRIPE_API_KEY environment variable # Alternatively, set it explicitly (not recommended for production) # api_key =…Continue reading

Print Invoice – Fix Garbled Bold Japanese Text in PDFs

/** * Print Invoice & Delivery Notes: fix garbled bold Japanese text in PDFs * * WPCode: PHP Snippet, Insert Method “Auto Insert”, Location “Run Everywhere”. * * The plugin’s “Bold” font style setting emits CSS font-weight:600 * (includes/services/template/class-template-style.php:399), and…Continue reading

SupportCandy – WOO Order Field with Order Date and Total

/** * SupportCandy – WooCommerce: show order date and total in the “WOO Order” field (Refs #8048) * * WPCode: PHP Snippet, Insert Method “Auto Insert”, Location “Run Everywhere”. * * Replaces the source modification formerly made to * wpsc-woocommerce/includes/custom-field-types/class-wpsc-cf-woo-order.php…Continue reading