Technically Web3
What is TW3?
Support TW3!
Technically Services
Technically Projects
Technically Merch
Cart
Checkout
My Account
Refund and Returns Policy
Home
/ Technically Merch
Technically Merch
Showing all 3 results
Default sorting
Sort by popularity
Sort by average rating
Sort by latest
Sort by price: low to high
Sort by price: high to low
ELLIPAL Titan 2.0
Buy on amazon.ca
SecuX – XSEED Plus
Buy from SecuX
Sale
Product on sale
Technically VIP Pass
$
150.00
Original price was: $150.00.
$
125.00
Current price is: $125.00.
Add to cart
View cart
// Hook in add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); // Our hooked in function - $fields is passed via the filter! function custom_override_checkout_fields( $fields ) { error_log(print_r($fields, true)); $fields['billing']['billing_city']['placeholder'] = "Something Different"; $fields['billing']['billing_city']['label'] = "Something Else"; return $fields; }