• Resolved misabook

    (@misabook)


    Hi,

    I maintain a client’s website and recently did some plugin and theme updates. Since then the shopping cart widget no longer appears in the sidebar. When I add the widget in the customizer, it also remains empty/white. In the source code, styles are applied of opacity:0, position: absolute and visibility: hidden. Can anyone solve this issue?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @misabook,

    I am sorry for the delay in response.

    Upon checking, there is minor CSS bug in the main theme’s stylesheet that is now being addressed. Permanent fix will come directly in upcoming release of the theme. Meanwhile, you can fix it by yourself by adding this CSS code to Additional CSS under Appearance > Customize menu.

    .widget-area .widget_shopping_cart {
      position: static;
      visibility: visible;
      opacity: 1;
      max-width: 100%;
      min-width: auto;
      -webkit-box-shadow: unset;
      box-shadow: unset;   
    }
    Thread Starter misabook

    (@misabook)

    Perfect, thanks a lot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘shopping cart not showing in sidebar’ is closed to new replies.