• Resolved mfabian

    (@mfabian)


    Hi Germanized Team,

    i am using the porto theme and somehow there are a few clashes in the checkout and cart.

    On cart: two times the button “proceed to checkout” screenshot 1
    and on checkout: two times the headings “choose form of payment / Zahlungsart auswählen”. The second one right above the proceed with order button screenshot 2

    Is there any easy solution for this? Which files would you need to have a look at?

    Thank you very much in advance

    Marco

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter mfabian

    (@mfabian)

    First screenshot not working, so here is the new link: Shreenshot 1

    Plugin Author vendidero

    (@vendidero)

    Hi there,

    the proceed to checkout button is not inserted by Germanized. Did you try to deactivate the plugin?

    The second issue seems to be theme-specific. It would be much easier to fix this by accessing your Shop URL (because then I can investigate the source code which I’m not aware of). I think the second problem could be easily fixed via a CSS display:none

    cheers

    Thread Starter mfabian

    (@mfabian)

    Hi,

    and thank you. Funny i didn’t supply the url: https://wasserhelden.net/shop/

    1) You are right this is a setting in the theme. No issue here

    2) I would rather not use css to fix this but instead clear up the hooks causing this. The id “order_payment_heading” occurs twice in the div container “order review”

    screenshot h3

    Thank you in advance

    Plugin Author vendidero

    (@vendidero)

    Hi there,

    well we are adding this heading to the WooCommerce Hook:
    woocommerce_review_order_before_payment

    Maybe your template or your customizations are applying that hook twice?

    Hi, i have the same problem with the porto template and the Germanized plugin. How can i fix what @mfabian explained above? What i need to do? I hope there is a solution. Thank you very much!

    Plugin Author vendidero

    (@vendidero)

    Hi,

    easiest solution would be the CSS approach:

    #order_review > h3#order_payment_heading {
       display: none;
    }

    that should help..

    cheers

    Thread Starter mfabian

    (@mfabian)

    Thank you.

    but this takes the heading out in both cases.

    ???

    Thank you

    Plugin Author vendidero

    (@vendidero)

    Hi there,

    you are right, this should help 🙂

    h3#order_payment_heading:last-of-type {
       display: none;
    }

    cheers

    Thread Starter mfabian

    (@mfabian)

    It works! Thank you

    Hello, thank you for the solution code, but which file do i need to edit exactly with this code above and in which folder i can find it?

    Thank you!

    Plugin Author vendidero

    (@vendidero)

    Hi,

    best is to use a Child-Theme and insert the code above within the style.css Stylesheet.

    cheers

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Using WCG with Porto Theme – hooks mix-up checkout and cart’ is closed to new replies.