• Hello,

    Love the plugin, I’d like to request for some features.

    First to be bale to show the cancel button in orders section next to the View button. Second when customer requests cancelation a pop up screen asks for a reason so we can see the reason in the order notes section. Third be able to send a notification email to customer when requested for cancelation in same email format/layout that WooCommerce emails has it.

    Thank You.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Shahjahan Jewel

    (@techjewel)

    Thanks @tatifox,
    I will try to make some time for these feature ??

    Thread Starter Tad

    (@tatifox)

    Thank you Shahjahan,

    For now is there any snippet code you can provide me to add in my theme’s functions.php file, to add Cancel button next to the View button in my-account/orders/ section?

    I tried many things for hours but could not make it. Something like this:

    
    function add_order_cancel_button( $actions, $order ) {
    	$actions['name'] = array(
    			'url'  => $cancel_url,
    			'name' => 'Cancel',
    	);
    	return $actions;
    }
    add_filter( 'woocommerce_my_account_my_orders_actions', 'add_order_cancel_button', 10, 2 );
    

    I will appreciate so much, Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Feature Request’ is closed to new replies.