Technically Creators

Become a Technically Creator for tons of great perks and partnership opportunities. Looking to add more channels to your monetization strategy? Let TechnicallyWeb3 help. Though we are primarily focused on tech projects we have partners in various industries. These partners can benefit from a partnership in a variety of niches. Fill out the form below and someone will reach out to see if you’d make a good fit for the Technically Creators group!

Subscribe

* indicates required
What’s your social media ID or name?
Which platform has the largest following?

Intuit Mailchimp

By signing up you agree that Technically Web3 or any of our partners can contact you. You can opt out any time after initial contact.


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

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