Advertisement
arie_cristianD

add Order link to JNews my Account page

Oct 15th, 2024
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. if ( function_exists( 'wc_get_page_permalink' ) ) {
  2.     add_action(
  3.         'jnews_after_account_nav',
  4.         function () {
  5.             $my_account_url = wc_get_page_permalink( 'myaccount' );
  6.             $order_page_url = wc_get_endpoint_url( 'orders', '', $my_account_url );
  7.  
  8.             echo '<div class="jeg_account_nav custom">
  9.         <ul>
  10.             <li>
  11.                 <a href="' . esc_html( $order_page_url ) . '">My Order</a>
  12.             </li>
  13.         </ul>
  14.     </div>';
  15.         }
  16.     );
  17.  
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement