Tagged: ,

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #262620

    I run two websites with Enfold. One is working fine, but the other at http://www.asudoit.com is not displaying the cart icon up top when an item is added to cart. I disabled all (but Woocommerce) plugins and it still was not displaying, even in an incognito window in Chrome.

    Any ideas?

    #262729

    Hey asudoit!

    Thank you for using the theme!

    It is showing but it is hidden on the overflow of the boxed layout. Please use this on Quick CSS or custom.css:

    .cart_dropdown.visible_cart {
    right: 18px;
    }

    Regards,
    Ismael

    #262736

    I tried that and even in an incognito Chrome browser window, the cart icon did not show up after adding an item to my cart.

    This worked before on a previous version of the theme, but not now? Please advise.

    #262737

    That last reply was from me…just logged in on my other account. :)

    #263150

    Hey!

    Thank you for the update.

    On what version of the browser and OS are you testing this with? I tested this on Chrome Windows 8 and the cart shows fine:

    Regards,
    Ismael

    #263179

    I’m on Windows 7 with latest updates and Chrome with latest updates.

    I just tried Firefox, and it shows up there, although the alignment is off a bit.

    #263183

    I have noticed some odd errors in the Chrome inspector. I’ve attached a screen capture.

    errors

    #263254

    I have the same problem: cart icon isn’t showing in chrome.

    #263369

    Hey!

    It seems like one or more plugins or browser extensions (Chrome extensions) cause a js conflict/error which also breaks the cart script. Please try to deactivate all plugins/extensions (especially the “shareaholic” plugin) and check if the cart starts to work afterwards.

    Cheers!
    Peter

    #263371

    I use a 100% clean Crome with no extensions. Problem remains.

    #263380

    Hi!

    Please create a new thread and post a link to your website. My answer was directed to the thread creator asudoit who posted the screenshot.

    Cheers!
    Peter

    #263479

    Hi Peter and Dude,

    As I mentioned in the original post, I already tried with all plugins disabled. I went ahead and disabled all Chrome extensions as well, and the problem remains, just the armindoerr is experiencing.

    Like Ishmael said, the cart is there, it just isn’t visible. If I hover my mouse over where the cart should be, eventually I can click on it, but it is invisible.

    #263734

    Hey!

    Thank you for the update.

    Again, I tested on Firefox and Chrome Windows 8 and the cart is there. Please add this on Quick CSS or custom.css:

    #wrap_all {
    overflow: visible;
    }
    
    .html_boxed .cart_dropdown {
    position: fixed;
    top: 35px;
    z-index: 5000;
    }

    Regards,
    Ismael

    #263760

    Ishmael,

    That CSS worked better than the first one you posted a few days ago, and the cart icon is now showing.

    However, I am concerned with how it behaves responsively. At some screen widths, it disappears partially and sometimes altogether.

    #263855

    Hey!

    Glad it somehow worked.

    Please add this on Quick CSS to reposition the cart button on smaller screens:

    
    @media only screen and (min-width: 767px) and (max-width: 989px) {
      .cart_dropdown.visible_cart { right: 94px; }
    }
    
    @media only screen and (max-width: 768px) {
    .cart_dropdown.visible_cart {
    right: 0;
    }
    
    .html_boxed .cart_dropdown {
    top: 70px;
    }
    }

    Best regards,
    Ismael

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.