• Hello

    I have installed woocommerce on a website with evolve and a problem appears at checkout, and is that the fields to enter shipping address, and billing are compressed to the left of the page (attached image).

    Please help

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Evgeny Viner

    (@evgenyviner)

    Hi. I’ve checked your website – now everything appears to be in order. If you still need help, let me know

    I am having the same problem. I renamed the woocommerce folder in \evolve to no_woocommerce, but still having a problem. It appears the customer name/address are all being shoved into a col-1 bootstrap column, so it’s unreadable.

    When I switch the theme to storefront, it looks fine, but evolve it’s not.

    Here’s a link to my cart.

    https://blackhillscoffee.com/bhc_wp/checkout/

    p.s. I just updated evolve to 4.2.7 and still has billing shipping info in a super narrow column.

    • This reply was modified 4 years, 8 months ago by willygsd.

    re: the checkout issue..Here is what viewing the elements in browser debugger shows..
    <div class=”col2-set” id=”customer_details”>
    <div class=”col-1″>
    <div class=”border p-4″>
    <h4>Billing details</h4>

    removing the ‘class=”col-1″‘ from the 2nd div turns the screen into a normal, readable screen.

    If someone else is having a similar problem. I implemented a fix. I wish there was a better one, but this works.
    In the function.js called by my child theme, I added the following code. It removes the col-1 class from the offending column. It also removes col-2 class from ship to address info.

    jQuery(document).ready(function($) {
    if ( document.title = “Checkout ? Black Hills Coffee” ){
    jQuery( “div”).removeClass( “col-1 col-2”); }
    });

    • This reply was modified 4 years, 8 months ago by willygsd.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘checkout Evolve problem’ is closed to new replies.