• Recently our “ship to different address” button stopped working. Woocommerce says it’s a theme problem. Inkthemes for Colorway says it’s a woocommerce problem. I just want it fixed.

    You can see the shipping address form elements as the page is loading but when it’s done loading and the “ship to different address” button is available the shipping address elements are gone and you cannot click on the “ship to different address” button to make them appear.

    I tested it in a couple different themes and it seems to work. Does anyone have code that I can add somewhere to get this working again?

    http://saferide4kids.com

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • How did you resolve this?

    Thread Starter sr4k

    (@sr4k)

    It was cufon issue.

    I had to put following line in my theme’s functions.php file which was adding cufon style fonts, thus overlapping the checkbox on checkout page. It took away my theme’s fancy font but got the checkbox working again. You may need to change the font name where mine says Champagne.font.js

    wp_enqueue_script(‘cufonfont’, get_template_directory_uri() . ‘/js/Champagne.font.js’, array(‘jquery’));

    Hope that helps you.

    I found that you can target the specific element with CSS and force it not to display the “canvas” over top of the checkbox:

    h3#ship-to-different-address > cufon.cufon canvas {
      display: none;
    }

    Hope this helps!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Woocommerce Ship to different address not working in Colorway theme’ is closed to new replies.