Announcement

Collapse
No announcement yet.

See All Categories

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

    See All Categories

    On the Booc ReadyTheme, the SFNT page has a link "SEE ALL CATEGORIES" but it's linked to the SFNT. In the navigation, there is a link to all-categories http://booc-theme.mivamerchantdev.co...ategories.html which appears to a page created for all categories to display. It doesn't look like that page is created with the Booc ReadyTheme or at least not in my dev installation. Could the could used to create the categories display be shared?

    Thanks!
    Leslie
    Leslie Kirk
    Miva Certified Developer
    Miva Merchant Specialist since 1997
    Previously of Webs Your Way
    (aka Leslie Nord leslienord)

    Email me: [email protected]
    www.lesliekirk.com

    Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

    #2
    here is the code. the page should be CLST

    Code:
    <mvt:item name="html_profile" />
    <head>
        <mvt:if expr="NOT ISNULL l.settings:page:title">
            <title>&mvt:page:title;</title>
        <mvt:else>
            <title>&mvt:store:name;: &mvt:page:name;</title>
        </mvt:if>
        <mvt:item name="head" param="head_tag" />
    </head>
    <body class="&mvt:global:pageClass;" id="js-&mvte:page:code;">
    <mvt:item name="hdft" param="global_header" />
    <div class="column whole hdft-header">
        <mvt:item name="hdft" param="header" />
    </div>
    <div class="column whole">
        <section class="row mm-card-grid">
            <mvt:do name="l.result" file="g.Module_Library_DB" value="CategoryList_Load_Parent('', l.settings:parent_categories)" />
            <mvt:foreach iterator="parent" array="parent_categories">
                <mvt:assign name="l.settings:category_tree" value="''" />
                <mvt:do name="l.result" file="g.Module_Library_DB" value="Category_Load_Code(l.settings:parent:code, l.settings:category)" />
                <mvt:do name="l.module_loaded" file="g.Module_Library_DB" value="Module_Load_Code('cmp-cssui-cattree', l.module)" />
                <mvt:if expr="l.module_loaded">
                    <mvt:do name="l.result" file="g.Module_Root $ l.module:module" value="CSSUI_CatTree_Load(l.settings:category:id, l.settings:category_tree)" />
                </mvt:if>
                <mvt:do file="g.Module_Feature_URI_UT" name="l.settings:category:uri" value="Store_Category_URL(l.settings:category, NULL)" />
                <article class="mm-card-grid-item">
                    <div class="mm-card-grid-item__wrapper">
                        <a class="mm-card-grid-item__image" href="&mvt:category:uri;" title=""><img src="&mvte:category_tree:image;" alt="&mvt:category:name;" title="&mvt:category:name;" /></a>
                        <a class="mm-card-grid-item__content font--uppercase button button--block button--large button--square bg--white color--black font--medium h-nb" href="&mvt:category:uri;" title="&mvt:category:name;">&mvt:category:name;</a>
                    </div>
                </article>
            </mvt:foreach>
        </section>
    </div>
    <div class="column whole hdft-footer">
        <mvt:item name="hdft" param="footer" />
    </div>
    <mvt:item name="hdft" param="global_footer" />
    </body>
    </html>
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Thanks Brennan. My bad, I'm working on a site with the Levels ReadyTheme but the store owner wants some of the Booc elements. I've been able to create this page for the site but now I need the CSS that goes along with the layout. Should I mention trying to find the mouse over affect has me banging my head again? There are a LOT of CSS files associated with the Booc ReadyTheme.
      Leslie Kirk
      Miva Certified Developer
      Miva Merchant Specialist since 1997
      Previously of Webs Your Way
      (aka Leslie Nord leslienord)

      Email me: [email protected]
      www.lesliekirk.com

      Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

      Comment

      Working...
      X