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 5 years, 11 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 5 years, 11 months ago by
willygsd.