Technically VIP Pass

Original price was: $150.00.Current price is: $125.00.

TW3 VIPs will get early access, exclusive AirDrops and priority support. Limit of 100.

43 in stock

SKU: TW3-VIP-PASS
Category:
Tags: ,

Description

This pass will give you exclusive access to the Technically VIP features including:

  • Early access to the alpha and beta programs for new dApps
  • Access to programs and events which are full with reserved VIP access
  • Exclusive VIP AirDrops
  • Priority VIP technical support

You can get this VIP pass at a discount by directly interacting with the VIP smart contract.

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