Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Last active June 4, 2022 07:52
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save claudiosanches/357fec20ff4802e259d4 to your computer and use it in GitHub Desktop.
Save claudiosanches/357fec20ff4802e259d4 to your computer and use it in GitHub Desktop.
WooCommerce - Add Order Again button to My Orders actions
<?php
/**
* Add order again button in my orders actions.
*
* @param array $actions
* @param WC_Order $order
* @return array
*/
function cs_add_order_again_to_my_orders_actions( $actions, $order ) {
if ( $order->has_status( 'completed' ) ) {
$actions['order-again'] = array(
'url' => wp_nonce_url( add_query_arg( 'order_again', $order->id ) , 'woocommerce-order_again' ),
'name' => __( 'Order Again', 'woocommerce' )
);
}
return $actions;
}
add_filter( 'woocommerce_my_account_my_orders_actions', 'cs_add_order_again_to_my_orders_actions', 50, 2 );
Copy link

ghost commented Jun 4, 2022

Hi all,
I have added this code to my functions.php. It works on orders with the status 'completed'. But I need to add this function to orders with status 'processing' also. So I added the below lines. But the link to which the button redirect shows the cart is empty. Could anyone help me, please?

elseif ( $order->has_status( 'processing') ) {
$actions['order-again'] = array(
'url' => wp_nonce_url( add_query_arg( 'order_again', $order->id ) , 'woocommerce-order_again' ),
'name' => __( 'Order Again', 'woocommerce' )
);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment