Announcement

Collapse
No announcement yet.

Quick View not popping up on new CTGY2 Page

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Quick View not popping up on new CTGY2 Page

    Hello - So I created an additional Category Page and copied over the default code from the Suivant Theme page. Everything works except the Quick View does not pop-up. I assume like some of the other code that I found, that it is looking for CTGY and not CTGY2 as the page, but for the life of me I can't find where that is for the Quick View. Any help would be most appreciated.
    Highly caffeinated
    http://www.coffeehouseexpress.com

    #2
    Re: Quick View not popping up on new CTGY2 Page

    Okay, once again I found the issue shortly after posting this question. For future reference, the issue with the Quick View is related to the code in the BODY Tag Content section. It refers to:
    Code:
    <mvt:if expr="l.settings:page:code EQ 'CTGY'">
    	<body id="js-&mvte:page:code;" class="boxed <mvt:eval expr="tolower(l.settings:page:code)" /> &mvte:category:code;">
    Which in my case needed to be changed to this:
    Code:
    <mvt:if expr="l.settings:page:code EQ 'CTGY' OR l.settings:page:code EQ 'CTGY2'">
           <body id="js-CTGY" class="boxed ctgy &mvte:category:code;">
    FYI...This is just referring to the "Quick View" feature of the Suivant Theme. If you are creating additional Category Pages, there are other sections where you need to add your new page code as well to get everything to work properly.
    Highly caffeinated
    http://www.coffeehouseexpress.com

    Comment

    Working...
    X