├── checklist-woocommerce.pdf ├── search-form.php ├── my-account.php ├── my-account.css └── item-menu-my-account.php /checklist-woocommerce.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamiroFabricioLobo/curso-loja-virtual-academia-hostnet/HEAD/checklist-woocommerce.pdf -------------------------------------------------------------------------------- /search-form.php: -------------------------------------------------------------------------------- 1 | is_search and !is_admin() ) { 6 | $query->set( 'post_type', array( 'product' ) ); 7 | } 8 | return $query; 9 | } 10 | ?> 11 | -------------------------------------------------------------------------------- /my-account.php: -------------------------------------------------------------------------------- 1 | user_firstname . ' ' . $current_user->user_lastname ); 6 | } 7 | add_shortcode( 'my-user-name', 'my_user_name' ); 8 | 9 | // URL Logout 10 | function my_url_logout() { 11 | return wp_logout_url(); 12 | } 13 | add_shortcode( 'my-url-logout', 'my_url_logout' ); 14 | ?> 15 | -------------------------------------------------------------------------------- /my-account.css: -------------------------------------------------------------------------------- 1 | .woocommerce-MyAccount-content { 2 | width: 100%; 3 | } 4 | 5 | .woocommerce-MyAccount-navigation { 6 | width: 0; 7 | height: 0; 8 | overflow-y: hidden; 9 | visibility: hidden; 10 | } 11 | 12 | #yith-wcwl-form small { 13 | display: block; 14 | } 15 | 16 | #yith_wcwl_share_url { 17 | width: 100%; 18 | } 19 | 20 | #yith-wcwl-form .yith-wcwl-share { 21 | width: 100%; 22 | } 23 | 24 | #yith-wcwl-form .copy-trigger { 25 | color: #a0090e; 26 | font-weight: 700; 27 | } 28 | -------------------------------------------------------------------------------- /item-menu-my-account.php: -------------------------------------------------------------------------------- 1 | 25 | --------------------------------------------------------------------------------