Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1238365
Woocommerce Checkout not scaled
Closed

Comments

  • Kristofer started the conversation

    Woocommerce checkout is not scaled correctly on mobile. Customer is not able to see amounts when viewing vertical.


  •  6,933
    Oliver replied

    HI!

    pls. use following css:

    .woocommerce-cart-form .sc-table {
        overflow-x: scroll;
    }

     This code adds horizontal scrolling for this table.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Kristofer replied

    Hi!

    Cant see any difference with that css.

  •  6,933
    Oliver replied

    HI!

    pls. provide the wp-admin access.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •   Kristofer replied privately
  • Kristofer replied

    If I remove review-order.php from themes/scalia/woocommerce folder. Then it scales good on mobile but unfortunately it messes up the design, does not look good.

    The review-order.php in scalia folder also cause another problem (problem in another ticket, waiting for a reply). It does not recalculate order total in final checkout when I change payment option. Same here, if I remove the file from scalia folder it works good.

  •  6,933
    Oliver replied

    Pls. add this:

    table.shop_table.cart td, table.shop_table.cart tr {
        width: 100%;
        display: block;
    }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Kristofer replied

    Cant see any difference in checkout on mobile.

  •  6,933
    Oliver replied

    pls. clean your browser cache

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Kristofer replied

    I see, you are on the wrong page. No problem there with the cart on mobile.
    Problem is here - http://www.knracing.se/blog/kassan/#woo-checkout3. Final checkout where the "buy now" button is.

    That is where I cant see the amounts on mobile.

  •  6,933
    Oliver replied

    Try this:

    @media only screen and (max-width: 768px) {
    table.shop_table.order-details td, table.shop_table.order-details tr {
        width: 100%;
        display: block;
        padding-left: 10px !important;
        text-align: left !important;
    }
    body .woocommerce table.shop_table.order-details thead tr th.product-name {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
    }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Kristofer replied

    Looks better! Now I can see everything on mobile as well.

    Still one problem left at the moment. Final checkout does not automatically recalculate order total when I change shipping or payment option. Which means, if a customer change any of those the order total show is not correct.

  •  6,933
    Oliver replied

    Pls. wait some time my colleague looking fix for this issue.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver