Ready Theme items do not display on Checkout Pages

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jim Cockerham
    Mighty Mivite




    • Mar 2006
    • 755

    #1

    Ready Theme items do not display on Checkout Pages

    Anyone know why these 2 items do not show up in the global footer on the Checkout pages? The Ready Theme item is assigned to the checkout pages and these items show up on all of the other pages.

    Code:
    <mvt:item name="readytheme" param="navigationset( 'footer_categories' )" />
    
    <mvt:item name="readytheme" param="navigationset( 'helpful_links' )" />
    Highly caffeinated
    http://www.coffeehouseexpress.com
  • Matt Zimmermann
    Mega Mivite










    • Apr 2008
    • 2482

    #2
    Re: Ready Theme items do not display on Checkout Pages

    Hi Jim,

    In your pages.css file within the "=OCST, OSEL, OPAY AND INVC PAGES" section, replace this:
    Code:
    @media screen and (min-width: 768px) {
        .invc .navigation-set,
        .ordl .navigation-set,
        .ocst .navigation-set,
        .ous1 .navigation-set,
        .ousm .navigation-set,
        .uatm .navigation-set,
        .uatr .navigation-set,
        .osel .navigation-set,
        .opay .navigation-set {
            height: 0;
            visibility: hidden;
        }
    }
    with this:
    Code:
    @media screen and (min-width: 768px) {
        .invc .horizontal-mega-menu,
        .ordl .horizontal-mega-menu,
        .ocst .horizontal-mega-menu,
        .ous1 .horizontal-mega-menu,
        .ousm .horizontal-mega-menu,
        .uatm .horizontal-mega-menu,
        .uatr .horizontal-mega-menu,
        .osel .horizontal-mega-menu,
        .opay .horizontal-mega-menu {
            height: 0;
            visibility: hidden;
        }
    }
    Matt Zimmermann

    Miva Web Developer
    Alchemy Web Development
    https://www.alchemywebdev.com
    Site Development - Maintenance - Consultation

    Miva Certified Developer
    Miva Professional Developer

    https://www.dev4web.net | Twitter

    Comment

    • Jim Cockerham
      Mighty Mivite




      • Mar 2006
      • 755

      #3
      Re: Ready Theme items do not display on Checkout Pages

      Thanks Matt, that did it!
      Highly caffeinated
      http://www.coffeehouseexpress.com

      Comment

      Working...
      X