Type: php
CSSFIX_UNIVERSAL – Oversized Admin Bar Sync Icons
/** * FIX: Oversized Admin Bar Sync Icons * Version: 1.1 (Safe for all WordPress sites) * * For WPCode: * – Code Type: PHP Snippet * – Location: Admin Only (or Run Everywhere) * – Auto Insert: Yes */…Continue reading
OFS – Internal Categories Protection
/** * OFS Internal Categories Protection * * Any product in a category whose slug starts with “internal-” * will be: * – Not purchasable * – Have no price shown * – Have no Add to Cart button/text on…Continue reading
Rename WooCommerce “Coupon” terminology to “Discount”
if ( class_exists( ‘WooCommerce’ ) ) { add_filter( ‘gettext’, ‘rd_wc_generic_coupon_replacement’, 20, 3 ); add_filter( ‘ngettext’, ‘rd_wc_generic_coupon_replacement_plural’, 20, 5 ); // Also replace wording directly in notices (covers cases where text bypasses gettext later) add_filter( ‘woocommerce_add_notice’, ‘rd_wc_generic_coupon_replacement_in_notice’, 20, 1 ); add_filter(…Continue reading
Change WooCommerce Coupon Code Entry Field Placeholder and Apply Button Text
if ( class_exists( ‘WooCommerce’ ) ) { // Run after RD renaming snippet (in case enabled) add_filter( ‘gettext’, ‘rd_wc_coupon_text_overrides’, 30, 3 ); function rd_wc_coupon_text_overrides( $translated, $original, $domain ) { if ( is_admin() ) { return $translated; } if ( !…Continue reading
Open WooCommerce Store Checkout Terms & Conditions in New Window
function rosso_woocommerce_checkout_terms_and_conditions() { if ( ! class_exists( ‘WooCommerce’ ) ) { return; } remove_action( ‘woocommerce_checkout_terms_and_conditions’, ‘wc_terms_and_conditions_page_content’, 30 ); } add_action( ‘wp’, ‘rosso_woocommerce_checkout_terms_and_conditions’ );Continue reading
Logout without Confirmation
add_action( ‘template_redirect’, ‘logout_confirmation’ ); function logout_confirmation() { global $wp; if ( isset( $wp->query_vars[‘customer-logout’] ) ) { wp_redirect( str_replace( ‘&’, ‘&’, wp_logout_url( wc_get_page_permalink( ‘myaccount’ ) ) ) ); exit; } }Continue reading
Create ‘Clear Cart’ URL Parameter
if ( class_exists( ‘WooCommerce’ ) ) { add_action( ‘init’, function() { if ( isset( $_GET[‘clear-cart’] ) && $_GET[‘clear-cart’] === ‘true’ ) { if ( WC()->cart ) { WC()->cart->empty_cart(); } // Remove ?clear-cart=true from URL $clean_url = remove_query_arg( ‘clear-cart’ ); wp_safe_redirect(…Continue reading
Add Shipping Phone field to checkout in ‘Deliver to a different address’ Shipping Address section
if ( ! class_exists( ‘WooCommerce’ ) ) { return; } add_filter( ‘woocommerce_shipping_fields’, ‘rd_add_shipping_phone_field’ ); function rd_add_shipping_phone_field( $fields ) { $fields[‘shipping_phone’] = array( ‘label’ => __( ‘Phone (For Delivery Tracking SMS)’, ‘woocommerce’ ), ‘required’ => false, ‘class’ => array( ‘form-row-wide’ ),…Continue reading
Have WooCommerce ‘Deliver to Different Address’ Checkbox Unticked by Default
if ( class_exists( ‘WooCommerce’ ) ) { add_filter( ‘woocommerce_ship_to_different_address_checked’, function ( $checked ) { $checkout = WC()->checkout(); if ( ! $checkout ) { return $checked; } // Check if the shipping address has already been entered $shipping_first = $checkout->get_value( ‘shipping_first_name’…Continue reading