skip to Main Content

Add an action button with a unique CSS class to WooCommerce my account orders

Here is my function for adding an option to my orders page: add_filter( 'woocommerce_my_account_my_orders_actions', 'add_my_account_my_orders_custom_action', 10, 2 ); function add_my_account_my_orders_custom_action( $actions, $order ) { $action_slug = 'specific_name'; $actions[$action_slug] = array( 'url' => home_url('/the_action_url/'), 'name' => 'The Button Text', ); return…

VIEW QUESTION
Back To Top
Search