• Its an awesome addin having the cart in the header and indeed saves me an extra plugin. However, I have noticed something, which I think is causing a problem.

    The site looks normal with the option checked and I want the cart with the title, however if I uncheck the option it does not keep the same font choices and seems to default to only one font, no matter which I try. I also have a plugin called wcvendors pro and if I have the show cart option enabled it does not allow users to register via that plugin.

    Just sort of noticed that this morning, not had time to fully read forum as literally flying out the door to work.

    Anyone else noticed this or can help.

    mark

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello Mark,
    tried to reproduce the wc-vendors (free) compatibility issue when the cart is enabled with no luck. Is the front-end registration available only with the pro version?
    What exactly happens (meaning, what doesn’t work) when you try to register via that plugin?

    About the font issue with the cart disabled, you’re right. It’s a bug.
    Will be fixed in the next release.
    Meantime, if you want, you can use the following workaround:
    1) Keep the option disabled
    2) In your child-theme functions.php, or in your theme functions.php at the very bottom, add the following:

    add_filter( 'tc_opt_tc_woocommerce_header_cart', 'fix_font_css_issue' );
    function fix_font_css_issue( $bool ) {
      global $wp_current_filter;
      if ( in_array( 'tc_user_options_style', $wp_current_filter ) )
        return true;
      return $bool;
    }

    Hope this helps.

    Did you mean this form?
    https://prntscr.com/9i0iru
    works fine here:
    https://prntscr.com/9i0iya

    Thread Starter nofski

    (@nofski)

    Hello

    Whoooooo first bug report ??

    Ok thats slightly wierd as now I’ve come back to this and had a look it seems to allow registration, I could have sworn it wasnt doing it the other morning! Just the same problem as before with the text not displaying right in opera, firefox and IE. But I raised that issue somewhere else.

    https://prntscr.com/9i12ee

    Thanks for the work around

    Mark

    Mmm,
    well you can try to fix the CSS issue with something like:
    .woocommerce form input.input-text { height: auto; }

    More about inspecting pages:
    https://docs.presscustomizr.com/article/30-inspect-your-webpages-in-your-browser-with-the-development-tools

    Hello,
    the issue has been fixed in the upcoming release ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘woocommerce cart header causing problems’ is closed to new replies.