How to Charge Your Lithium Ion Battery for a Longer Life
The secret to a longer-lasting battery isn't a complicated trick. It’s all about a few simple, smart habits. The main…
Read more →add_action( 'woocommerce_order_status_processing', 'generate_invoice_for_processing_orders',10,1 ); function generate_invoice_for_processing_orders( $order_id ) { $order = wc_get_order( $order_id ); $payment_method = $order->get_payment_method(); if ( strpos( $payment_method, 'stripe' ) === false) { _wp_oblio_generate_invoice( $order_id ); } }/** * Enforce Korean (Hangul) names when shipping to South Korea. * - Checks the effective shipping country at checkout. * - Validates first/last name (shipping if present, otherwise billing). * - Allows Hangul letters plus spaces and hyphens. */ add_action('woocommerce_after_checkout_validation', function( $data, $errors ) { // Determine the effective shipping country. // If "Ship to a different address" is off, shipping = billing. $ship_country = ''; if ( ! empty( $data['shipping_country'] ) ) { $ship_country = strtoupper( $data['shipping_country'] ); } elseif ( ! empty( $data['billing_country'] ) && ( empty( $data['ship_to_different_address'] ) || $data['ship_to_different_address'] === '0' ) ) { $ship_country = strtoupper( $data['billing_country'] ); } // Only apply for South Korea. if ( $ship_country !== 'KR' ) { return; } // Hangul syllables range + spaces + hyphen. // If you want to also allow Jamo/Compatibility Jamo, expand to: // '/^[\x{1100}-\x{11FF}\x{3130}-\x{318F}\x{AC00}-\x{D7A3}\s\-]+$/u' $hangul_pattern = '/^[\x{AC00}-\x{D7A3}\s\-]+$/u'; // Prefer shipping names if provided; otherwise fall back to billing. $first_name = ! empty( $data['shipping_first_name'] ) ? $data['shipping_first_name'] : ( $data['billing_first_name'] ?? '' ); $last_name = ! empty( $data['shipping_last_name'] ) ? $data['shipping_last_name'] : ( $data['billing_last_name'] ?? '' ); // Validate first name if ( $first_name === '' || ! preg_match( $hangul_pattern, $first_name ) ) { $errors->add( 'validation', __( 'For deliveries to South Korea, the recipient’s first name must be written using Korean (Hangul) letters only.', 'your-textdomain' ) ); } // Validate last name if ( $last_name === '' || ! preg_match( $hangul_pattern, $last_name ) ) { $errors->add( 'validation', __( 'For deliveries to South Korea, the recipient’s last name must be written using Korean (Hangul) letters only.', 'your-textdomain' ) ); } }, 10, 2); add_filter( "googlesitekit_analytics-4_enable_consent_mode", "__return_false" );
The secret to a longer-lasting battery isn't a complicated trick. It’s all about a few simple, smart habits. The main…
Read more →