%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/themes/cwg/ |
Current File : //var/www/cwg/wp-content/themes/cwg/my-account.php |
<?php /** * The main template file * Template Name: My Account * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package onepoint */ update_communication_preferences(); get_header(); ?> <!----Should be placed when there is no carousel--> <div class="js-headerGap h-[51px]"></div> <?php if (have_posts()) { while (have_posts()) { the_post(); ?> <?php //Address add_filter('woocommerce_default_address_fields', 'wc_override_address_fields'); function wc_override_address_fields($fields) { $fields['address_1']['placeholder'] = 'Street Address *'; return $fields; } ?> <section class="mt-7 cwg-container-main myaccount"> <h1 class="text-[16px] font-medium leading-6 mb-[15px] uppercase sr-only">My Account</h1> <!-- <p class="text-xs mb-2">From your account dashboard you can view your recent orders, manage your shipping and billing addresses, and edit your password and account details.</p> --> <div id="my-account"> <?php echo do_shortcode("[woocommerce_my_account]"); ?> </div> <?php // if user login show logout button if(is_user_logged_in()) { ?> <div class="custom-my-account-logout"> <p class="my-account-dashboard-intro"> <a class="flex justify-center items-center rounded-none h-[40px] border border-solid border-grey-darker text-xs cursor-pointer w-full font-thin text-grey my-4" href="<?php echo wp_logout_url(home_url()); ?>">LOG OUT</a></p> </div> <?php } ?> </section> <?php } } ?> <?php get_footer(); ?>