Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created February 20, 2019 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/9cae5fc1a54da26e5c141b2e3ce61b82 to your computer and use it in GitHub Desktop.
Save KaineLabs/9cae5fc1a54da26e5c141b2e3ce61b82 to your computer and use it in GitHub Desktop.
Set Default Profile Woocommerce Tab
<?php
/**
* Set Default Profile Woocommerce Tab.
*/
function yzc_profile_woocommerce_default_tab() {
return 'orders';
}
add_filter( 'yz_profile_woocommerce_default_tab', 'yzc_profile_woocommerce_default_tab' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment