Announcement

Collapse
No announcement yet.

SuperFast Nested Sitemap Module

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

    SuperFast Nested Sitemap Module

    We've just released a new sitemap module that produces the fastest-loading dynamic sitemaps you've ever seen on a Miva Merchant store. For a limited time, SuperFast Nested Sitemaps is being offered at a reduced rate of $39.95. You can find it here:

    NetBlazon.com: http://www.netblazon.com/p-NBSITEMAP.html
    MivaCentral: http://bit.ly/mmsitemap



    More details:

    Dynamic HIERARCHICAL sitemaps for large sites USED to be very slow. For awhile, we made these for our clients using a variation of the category tree, but it was SLOW, even if we used a third-party module. And the more categories you added, and the more levels deep the structure became, the slower the page was to load.

    Then we thought - Miva Merchant 5.5 can use MySQL, so let's take advantage of that.

    The result is our new SuperFast Nested Sitemap module. It shows a structured hierarchical sitemap of your categories. By hierarchical, we mean parent, subcategory, sub-subcategory, etc. And it can be completely controlled using Store Morph Technology (SMT), so you can make it look exactly the way you want.

    Examples (including screenshots and live links) are available when you click to view the product at NetBlazon or MivaCentral.

    NetBlazon.com: http://www.netblazon.com/p-NBSITEMAP.html
    MivaCentral: http://bit.ly/mmsitemap
    Susan Petracco
    NetBlazon

    1.866.400.2444

    _____________________________________________

    Like us on Facebook

    #2
    Re: SuperFast Nested Sitemap Module

    But how fast is SuperFast? lol kidding sounds like a great module.

    --
    Thank you,
    Gary Hodder
    Support
    --
    CybrHost Corp. - http://www.cybrhost.com/ - [email protected]
    +1-866-300-MIVA - Professional Miva & E-Commerce web hosting services.
    Premiere Hosting Partner Since 1999

    Comment


      #3
      Re: SuperFast Nested Sitemap Module

      LOL Gary, leave it to you!!! I'm glad you asked. The data is in the screenshots on the module pages, but the largest example is

      Depth: 5 levels
      Number of Categories Shown: 11,350
      Load Time: 4-5 seconds

      And that load time includes everything - including larger external scripts like jQuery and SearchSpring.
      Susan Petracco
      NetBlazon

      1.866.400.2444

      _____________________________________________

      Like us on Facebook

      Comment


        #4
        Re: SuperFast Nested Sitemap Module

        That does sound "SuperFast".

        --
        Thank you,
        Gary Hodder
        Support
        --
        CybrHost Corp. - http://www.cybrhost.com/ - [email protected]
        +1-866-300-MIVA - Professional Miva & E-Commerce web hosting services.
        Premiere Hosting Partner Since 1999

        Comment


          #5
          Re: SuperFast Nested Sitemap Module

          We are interested in the module, however the documentation is returning a 404 error on the NetBlazon product page. Can you let me know when it's corrected?

          Thanks!

          Comment


            #6
            Re: SuperFast Nested Sitemap Module

            Can you pick and choose which categories to include in the sitemap? Any possibility of including extra pages within Miva Merchant? Hmmm, I suppose those could be hand coded in. But it would be really cool to be able to have those.

            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

            Comment


              #7
              Re: SuperFast Nested Sitemap Module

              Leslie, if there's enough demand I'm happy to add both categories and pages, and the ability to decide which pages/categories to include or exclude. In the meantime you can definitely exclude categories with SMT, like this:

              Code:
              <mvt:foreach iterator="category" array="nbsitemap">
                 <mvt:if expr="(l.settings:category:code NE 'mens-shirts') AND (l.settings:category:code NE 'womens-shirts') AND (l.settings:category:code NE 'kids-shirts')">
                    <li id="sitemap_&mvt:category:code;"><mvt:item name="fonts" param="body_font"><a href="&mvt:global:basedomain;/&mvt:category:code;.html">&mvt:category:name;</a></mvt:item></li>
                 </mvt:if>
                 ...
              </mvt:foreach>
              That would show all categories except those with the codes mens-shirts, womens-shirts, and kids-shirts.

              If others would find the ability to check to include/exclude categories and/or pages, please let me know.
              Susan Petracco
              NetBlazon

              1.866.400.2444

              _____________________________________________

              Like us on Facebook

              Comment


                #8
                Re: SuperFast Nested Sitemap Module

                Is there a way to make it so that when level 2 has subcats that it will not be a link, and does not have subcats it will be a link?

                This is my code right now... :
                Code:
                <mvt:foreach iterator="subcat1" array="category:subcats">
                     <mvt:if expr="NOT ISNULL l.settings:subcat3:subcats">
                          <li class="sitemap-level2"><h3><a href="/category&mvt:global:basedomain;/&mvt:subcat1:code;.html">&mvt:subcat1:name;</a></h3></li>        
                     <mvt:else>        
                          <li class="sitemap-level2"><h3>&mvt:subcat1:name;</h3></li>    
                     </mvt:if>
                </mvt:foreach>

                Comment

                Working...
                X