AlkantarClanX12
Current Path : /home/thanudqk/siamfreetour.com/wp-content/themes/fast-press/include/woocommerce/ |
Current File : /home/thanudqk/siamfreetour.com/wp-content/themes/fast-press/include/woocommerce/woo-functions.php |
<?php // Do not allow direct access to the file. if( ! defined( 'ABSPATH' ) ) { exit; } /** * WooCommerce Functions */ /** * WooCommerce myaccount page */ function fast_press_woo_account () { if ( class_exists( 'WooCommerce' ) and !get_theme_mod('fast_press_header_my_account') ) { if ( is_user_logged_in() ) { ?> <a class="woo_log" href="<?php echo esc_url( get_permalink( get_option('woocommerce_myaccount_page_id') ) ); ?>" title="<?php echo esc_html('My Account','fast-press'); ?>"><span class="woo-log-s"><span class="dashicons dashicons-admin-users"></span></span></a> <?php } else { ?> <a class="woo_log" href="<?php echo esc_url( get_permalink( get_option('woocommerce_myaccount_page_id') ) ); ?>" title="<?php echo esc_html('Login / Register','fast-press'); ?>"><span class="woo-log-s"><span class="dashicons dashicons-admin-users"></span></span></a> <?php } } } add_action( 'fast_press_header_woo_cart', 'fast_press_woo_account' );