Announcement

Collapse
No announcement yet.

Smart Breadcrumbs Issue

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

    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
    *Web Developer
    *Miva
    *Google Analytics, Search Console, Tag Manager, Merchant Center, Ads

    #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


      #3
      Unfortunately that did not fix the issue
      Nick Harkins
      www.loveisarose.com
      *Web Developer
      *Miva
      *Google Analytics, Search Console, Tag Manager, Merchant Center, Ads

      Comment


        #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


          #5
          No it didn't correct the issue.
          Nick Harkins
          www.loveisarose.com
          *Web Developer
          *Miva
          *Google Analytics, Search Console, Tag Manager, Merchant Center, Ads

          Comment


            #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
            *Web Developer
            *Miva
            *Google Analytics, Search Console, Tag Manager, Merchant Center, Ads

            Comment


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

              Thanks.
              Nick Harkins
              www.loveisarose.com
              *Web Developer
              *Miva
              *Google Analytics, Search Console, Tag Manager, Merchant Center, Ads

              Comment


                #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


                  #9
                  okay thanks
                  Nick Harkins
                  www.loveisarose.com
                  *Web Developer
                  *Miva
                  *Google Analytics, Search Console, Tag Manager, Merchant Center, Ads

                  Comment

                  Working...
                  X