Home Forums Themes Support Claue Add new menu on account icon

Topic Resolution: Resolved
Viewing 1 reply thread
  • Author
    Posts
    • #21146

      Please help i want rename order tracking and add new menu for example confirm payment page

      Attachments:
      You must be logged in to view attached files.
    • #21158

      Hi Florentia,

      Please add below code to claue-child > functions.php

      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 / Register', 'claue' ) . '</a></li>';
                }
              $output .= '</ul>';
            $output .= '</div>';
          }
      
          return apply_filters( 'jas_claue_wc_my_account', $output );
        }
      }

      And change the code

      $output .= '<li><a class="db cg chp" href="' . esc_url( home_url( '/orders-tracking/' ) ) . '">' . esc_html__( 'Order Tracking', 'claue' ) . '</a></li>';

      as you want.

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

Viewing 1 reply thread

You must be logged in to reply to this topic.