Announcement

Collapse
No announcement yet.

MMUI Breadcrumbs

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

    MMUI Breadcrumbs

    I know most MMUI stores have had some "tool" type module to create Breadcrumbs. Breadcrumbs became native to CSSUI. With that said, has anyone been able to create Breadcrumbs within an MMUI store with any third-party modules?

    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's a thought. Grab a copy of mmlsk-cmp-cssui-breadcrumbs.mvc from a CSSUI store and just install it into the mmui store (assign it to all pages, yada...) and then add the mvt:item where needed. Don't see why that wouldn't work but haven't tried it.
    Bruce Golub
    Phosphor Media - "Your Success is our Business"

    Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
    phosphormedia.com

    Comment


      #3
      Originally posted by Bruce - PhosphorMedia View Post
      Here's a thought. Grab a copy of mmlsk-cmp-cssui-breadcrumbs.mvc from a CSSUI store and just install it into the mmui store (assign it to all pages, yada...) and then add the mvt:item where needed. Don't see why that wouldn't work but haven't tried it.
      Yeah, I had thought of that. Got squirreled but will try and let you know if it works or blows up.
      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


        #4
        FYI - all I found was cmp-cssui-breadcrumbs.mvc, it was actually already installed. I just had to create the item, assign it, and place the item. Unfortunately, it doesn't seem to be producing the desired results of showing all of the sub-categories when someone clicks deeper

        The desired result would be:

        ​​​​​​Home > Parent > Child > Child Child

        The current result

        Home > Current

        I'm thinking there may be a few other things missing that are needed to make the function "as needed".
        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


          #5
          Do you have a Breadcrumbs Template in the Global Settings admin page? (The module has code to generate this on module installation.) You may need to steal template code from another site as I think that is created by the framework. Sorry, these are just guesses.
          Bruce Golub
          Phosphor Media - "Your Success is our Business"

          Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
          phosphormedia.com

          Comment


            #6
            Originally posted by Bruce - PhosphorMedia View Post
            Do you have a Breadcrumbs Template in the Global Settings admin page? (The module has code to generate this on module installation.) You may need to steal template code from another site as I think that is created by the framework. Sorry, these are just guesses.
            This appears to be the default code that gets installed

            Code:
            <a href="&mvte:breadcrumbs:homelink;" class="breadcrumb-home">Home</a> <span class="breadcrumb-border">&gt;</span>
            <mvt:foreach iterator="cats" array="breadcrumbs:links">
            <mvt:if expr="l.settings:cats:name EQ '...'">
            <span class="cats-hidden">&mvt:cats:name;</span> <span class="breadcrumb-border">&gt;</span>
            <mvt:elseif expr="l.settings:cats:current">
            <span class="current-item">&mvt:cats:name;</span>
            <mvt:else>
            <a href="&mvte:cats:link;">&mvt:cats:name;</a> <span class="breadcrumb-border">&gt;</span>
            </mvt:if>
            </mvt:foreach>

            Now I kinda wish this store had the EP Toolkit...
            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