Smart Breadcrumbs Issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SidFeyDesigns
    Mighty Mivite








    • Jan 2012
    • 598

    #1

    Smart Breadcrumbs Issue

    For some reason when on any top level categories the bread crumbs show an extra border at the end. It only does this on the top level categories.

    Here is the breadcrumbs code:

    Code:
    <mvt:if expr="NOT (l.settings:page:code CIN g.screenCheck) AND l.settings:page:code NE 'SFNT'">
        <div class="row breadcrumbs">
            <nav class="column whole wrap float-none">
                <ul>
                    <li><a href="https://&mvt:global:domain:name;/" title="Home" class="breadcrumb-home">Home</a><span class="breadcrumb-border">&#47;</span></li>
                    <mvt:foreach iterator="cats" array="breadcrumbs:links">
                        <mvt:if expr="l.settings:cats:name EQ '...'">
                            <li><span class="cats-hidden">&mvt:cats:name;</span><span class="breadcrumb-border">&#47;</span></li>
                        <mvt:elseif expr="l.settings:cats:code EQ l.settings:breadcrumbs:current_item:code">
                            <li><span class="current-item">&mvt:cats:name;</span></li>
                        <mvt:else>
                            <li><a href="&mvt:cats:link;" title="&mvt:cats:name;">&mvt:cats:name;</a><span class="breadcrumb-border">&#47;</span></li>
                        </mvt:if>
                    </mvt:foreach>
                </ul>
            </nav>
        </div>
        <!-- end breadcrumbs -->
    </mvt:if>
    Attached are two screen shots to show what I mean.

    Thanks

    -Nick
    Attached Files
    Nick Harkins
    www.loveisarose.com
  • Matt Zimmermann
    Mega Mivite










    • Apr 2008
    • 2482

    #2
    Hi Nick,

    Try updating your breadcrumb code to this:
    Code:
    <mvt:if expr="NOT (l.settings:page:code CIN g.screenCheck) AND l.settings:page:code NE 'SFNT'">
        <div class="row breadcrumbs">
            <nav class="column whole wrap float-none">
                <ul>
                    <li><a href="https://&mvt:global:domain:name;/" title="Home" class="breadcrumb-home">Home</a><span class="breadcrumb-border">&#47;</span></li>
                    <mvt:foreach iterator="cats" array="breadcrumbs:links">
                        <mvt:if expr="l.settings:cats:name EQ '...' AND l.settings:cats:code EQ l.settings:breadcrumbs:current_item:code">
                            <li><span class="current-item">&mvt:cats:name;</span></li>
                        <mvt:elseif expr="l.settings:cats:name EQ '...'">
                            <li><span class="cats-hidden">&mvt:cats:name;</span><span class="breadcrumb-border">&#47;</span></li>
                        <mvt:elseif expr="l.settings:cats:code EQ l.settings:breadcrumbs:current_item:code">
                            <li><span class="current-item">&mvt:cats:name;</span></li>
                        <mvt:else>
                            <li><a href="&mvt:cats:link;" title="&mvt:cats:name;">&mvt:cats:name;</a><span class="breadcrumb-border">&#47;</span></li>
                        </mvt:elseif>
                    </mvt:foreach>
                </ul>
            </nav>
        </div>
        <!-- end breadcrumbs -->
    </mvt:if>
    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

    • SidFeyDesigns
      Mighty Mivite








      • Jan 2012
      • 598

      #3
      Unfortunately that did not fix the issue
      Nick Harkins
      www.loveisarose.com

      Comment

      • Matt Zimmermann
        Mega Mivite










        • Apr 2008
        • 2482

        #4
        If you remove the breadcrumb truncation in the settings, does it correct the issue?
        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

        • SidFeyDesigns
          Mighty Mivite








          • Jan 2012
          • 598

          #5
          No it didn't correct the issue.
          Nick Harkins
          www.loveisarose.com

          Comment

          • SidFeyDesigns
            Mighty Mivite








            • Jan 2012
            • 598

            #6
            I even reverted back to the original code that the suivant theme comes with and removed the breadcrumb truncation and it still didn't fix the issue.
            Nick Harkins
            www.loveisarose.com

            Comment

            • SidFeyDesigns
              Mighty Mivite








              • Jan 2012
              • 598

              #7
              Has anyone been able to find a solution for this?

              Thanks.
              Nick Harkins
              www.loveisarose.com

              Comment

              • Matt Zimmermann
                Mega Mivite










                • Apr 2008
                • 2482

                #8
                I would recommend contacting either Support or Professional Services to have them take a look at the code in the administration portal.
                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

                • SidFeyDesigns
                  Mighty Mivite








                  • Jan 2012
                  • 598

                  #9
                  okay thanks
                  Nick Harkins
                  www.loveisarose.com

                  Comment

                  Working...
                  X