Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if ( ! function_exists( 'jas_claue_wc_my_account' ) ) {
- function jas_claue_wc_my_account() {
- $output = '';
- if ( cs_get_option( 'header-my-account-icon' ) ) {
- $output .= '<div class="jas-my-account hidden-xs ts__05 pr">';
- $output .= '<a class="cb chp db" href="' . esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ) . '"><i class="pe-7s-user"></i></a>';
- $output .= '<ul class="pa tc">';
- if ( is_user_logged_in() ) {
- $output .= '<li><a class="db cg chp" href="' . esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ) . '">' . esc_html__( 'Dashboard', 'claue' ) . '</a></li>';
- $output .= '<li><a class="db cg chp" href="' . esc_url( home_url( '/orders-tracking/' ) ) . '">' . esc_html__( 'Order Tracking', 'claue' ) . '</a></li>';
- $output .= '<li><a class="db cg chp" href="' . esc_url( wp_logout_url() ) . '">' . esc_html__( 'Logout', 'claue' ) . '</a></li>';
- } else {
- $output .= '<li><a class="db cg chp" href="' . esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ) . '">' . esc_html__( 'Login', 'claue' ) . '</a></li>';
- }
- $output .= '</ul>';
- $output .= '</div>';
- }
- return apply_filters( 'jas_claue_wc_my_account', $output );
- }
- }
Add Comment
Please, Sign In to add comment