Support Technically Web3

Photo by Hannah Busing on Unsplash

Supporting Each Other

We want to continue sharing knowledge free and providing open source code. In order to do so we need your help.

Donate using crypto

New to crypto? Use our free resources to learn how to send crypto transactions. Test yourself by donating to one of our Official Addresses.

Bitcoin

You can send BTC to our segwit address: bc1q6c7glgd534wyyyw5v9rzfes4nn9t0w7lk9nmn7

Ethereum

You can send ETH to our ENS address: technicallyweb3.eth

Polygon

You can send MATIC to our EVM address: 0xD4F0A30Ff0DbF42fC795A7D2d9076bb3764df76c

Solana

You can send SOL to our Solana address: 9DsZo5F9LwiQHvzGi5xLgiRtYmNE3dpZ67zn91ZYBF7B

Ripple

You can send XRP to our Ripple address: rUK8xiUeabZy2qaDpZD9q7P4uknFZZh6p2

Stable Coins

You can send us any stable coins on any of the networks mentioned in this section.

Traditional Methods

You can support our community in more traditional ways if you’re not comfortable using crypto or don’t have any.

Patreon

  • Become a regular supporter.
  • Get highlighted in our community.
Tourist taking photo of a building
Windows of a building in Nuremberg, Germany

Other Methods

  • A world of thought-provoking articles.
  • Case studies that celebrate architecture.
  • Exclusive access to design insights.

“Knowledge is your most powerful asset”

Technically Web3

Join 15,000+ followers

Follow Technically Web3 on our social media accounts. Every view, like, comment and share helps spread the word about our community.

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