/* Code to add in sidebar where you want to show links */ <?php foreach ( wc_get_account_menu_items() as $endpoint => $label ) : ?> <li class="<?php echo wc_get_account_menu_item_classes( $endpoint ); ?>"> <a class="" href="<?php echo esc_url( wc_get_account_endpoint_url( $endpoint ) ); ?>"><?php echo esc_html( $label ); ?></a> </li> <?php endforeach; ?> ======================================================================= // Add custom button to My Account > Orders page add_filter( 'woocommerce_my_account_my_orders_actions', 'cu...