• Resolved edit7279

    (@edit7279)


    I was playing around with the refund functionality and noticed that other than changing the status of the order to “Refunded” in the customer’s account, there is no place where it actually shows the refund…for example on the order details, etc.

    On the Order Details table in a customers account I figured it would look something like the following since it does add lines for things like discounts, coupons, etc.:

    Subtotal: $33.00
    Shipping: UPS® Ground
    Payment Method: Credit Card
    Order Total: $33.00
    Refund: -XXX (Or something like this.)

    Is this not a standard feature?

    https://wordpress.org/plugins/woocommerce/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor royho

    (@royho)

    So if you look at the order in My Account, you should see this http://cld.wthms.co/1bU1Q

    Thread Starter edit7279

    (@edit7279)

    Yes, that’s what it looks like, but I wasn’t sure if it was supposed to actually show the refund like this http://goo.gl/4h6Bah

    I photoshopped that example, but I just thought this was a pretty basic function that would be included since most people would want a receipt showing their refund.

    Plugin Contributor royho

    (@royho)

    Here is a drop in you can use to add this. Put the code in your theme’s functions.php file preferably in a child theme.

    add_action( 'woocommerce_order_details_after_order_table', 'add_refund_details' );
    
    function add_refund_details( $order ) {
    	if ( $refund = $order->get_total_refunded() !== NULL ) {
    		echo '<table class="shop_table order_details"><tr><th scope="row">Refunded:</th><td>- ' . wc_price( $order->get_total_refunded(), array( 'currency' => $order->get_order_currency() ) ) . '</td></table>';
    	}
    }

    Will leave the styling to you.

    Thread Starter edit7279

    (@edit7279)

    Awesome, thanks Roy. I’ll check it out in a few.

    I was going to code it later today, but I’m still trying to figure out another issue… I can’t get the ajax-loader.gif to change size.

    I changed the image easy enough, but for some reason it’s stuck at 16×16 pixels and my new image is 130×130. I have looked in every single file and removed/changed the four instances of 16×16 I found, but its still that size.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Should refunds show on order details in My Account?’ is closed to new replies.