• Resolved berg19

    (@berg19)


    Hi,

    I’ve installed your plugin and i’m having difficulties to adjust my checkout.
    As i’m building a German store for the German Market, I need to comply with German law, so the checkout fields need to be in correct order..

    see screenshot without your code (default display with empty middle colomn)
    here >> https://ibb.co/hd5S0Sr

    My Porto theme has a different checkout layout that conflicts with Germanized
    I’ve read most support topics and found a solution that is almost good..

    it add_action( 'after_setup_theme', 'my_child_adjist_checkout', 20 );
    function my_child_adjist_checkout() {
       remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 20 );
       remove_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', 10 );
            add_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 );
    	add_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', 20 );
    } 

    see screenshot of checkout with above code here https://ibb.co/fxhzZRm

    1:i need a smal extra tweak to change the Zahlungsart Auswahlen mit bestellubersicht with the review, including the correct H3 headings,

    2: How can i place the “inkl. MwSt, one row higer above the Gesamtsumme?

    hope you can help me out , many thanks!

    Best

    A

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author vendidero

    (@vendidero)

    Hi,

    I guess for these changes to be made update-safe you’ll need some help of a webdeveloper. We can’t help you to customize your shop within our support service. Actually the hooks your are using reverts the changes made by Germanized to switch payment methods with the review order block.

    Changing the order of the totals is not recommended as the total VAT amount refers to an included amount which should not be shown above the total amount.

    Cheers

    Thread Starter berg19

    (@berg19)

    Hi,

    Thanks for your clarification concerning the reason of the exact position of the inkl.Mwst that makes sense..;)

    After looking at the theme checkout php code, i saw that the used layout should be changed..almost there, just a few tweaks left..(2 column / 2x col-lg-6 layout) and a hook to apply your Bestellübersicht title above the review sections remains..

    Best Regards

    A

    Plugin Author vendidero

    (@vendidero)

    Hi there,

    sounds good. Is there any info/help left that you still need?

    Cheers

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Checkout change order of fields porto theme’ is closed to new replies.