• Hello currently product downloads section is loaded before the order section is there a way to rotate the two?

    Just would like to have the order section first and then the download section if that is achievable.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support karlalevelup

    (@karlalevelup)

    Hello,

    Apologies for the delay in getting back to you.

    That is the default ordering of the WooCommerce plugin. However, you may use this code snippet to reverse their order:

    add_action( 'woocommerce_email_order_details', 'wc_email_order_details_action_callback', 1 );
    function wc_email_order_details_action_callback() {
    
        remove_action( 'woocommerce_email_order_details', array( WC()->mailer, 'order_downloads' ), 10 );
    
        add_action( 'woocommerce_email_order_details', array( WC()->mailer, 'order_downloads' ), 11, 4 );
    }

    You can add this snippet using the Code Snippets plugin.

    Hope this helps and let us know if we can assist you further.

    Regards,
    Karla

    Thread Starter burner9000

    (@burner9000)

    The code snippet you are trying to save produced a fatal error on line 0:

    Exception is thrown without a stack frame
    The previous version of the snippet is unchanged, and the rest of this site should be functioning normally as before.

    Please use the back button in your browser to return to the previous page and try to fix the code error. If you prefer, you can close this page and discard the changes you just made. No changes will be made to this site.
    I don’t know why that error is being thrown.

    Plugin Support karlalevelup

    (@karlalevelup)

    Hello,

    Apologies for the delay in getting back to you!

    I tried activating the code on my test website but no error was shown – https://share.getcloudapp.com/qGuJ2DEl.

    Could you attach a screenshot of your code snippet?

    Kind Regards,
    Karla

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘change the email order’ is closed to new replies.