Technically Projects

Though the Technically Web3 community does offer it’s services to clients it didn’t start like this. Technically Web3 was just a group of coders who helped each other with their projects. Below are some of the more impactful projects that are being developed by the Technically Web3 contributors.

// 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; }