We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 37984
    • 215 Posts
    Quote from: ben_omycode at Nov 16, 2012, 08:15 PM
    Thanks but I'm living in France and don't even know what DC means !

    Washington DC - sorry. Colloquialisms are a b**** sometimes tongue
      Jesse Couch
      MODX Aficionado, Front-End Designer & Developer
      http://www.designcouch.com
      • 32396
      • 56 Posts
      Hi,
      I have error in HTML 5 validator for itemprop="breadcrumbs"
      The itemprop attribute was specified, but the element is not a property of any item.

        Using: MODx Evo 1.0.6 / Revo 2.2.5
        • 34078
        • 76 Posts
        Hi Wild Striker,
        itemprop="breadcrumbs" is a schema.org microdata. To use it you have to replace your body tag with :
        <body itemscope itemtype="http://schema.org/WebPage">

        For more information : http://schema.org/
          • 32396
          • 56 Posts
          Quote from: ben_omycode at Nov 28, 2012, 08:12 AM
          Hi Wild Striker,
          itemprop="breadcrumbs" is a schema.org microdata. To use it you have to replace your body tag with :

          For more information : http://schema.org/

          Hi Ben, Thanks
            Using: MODx Evo 1.0.6 / Revo 2.2.5
            • 27106
            • 147 Posts
            I have a new site where the Breadcrumb tag doesn't create the SPAN tag and backslash - so the items in the crumb list simply run together. Any ideas on what could cause this? (I'm using a custom property set, but this property doesn't seem to be settable anyway ...)
              David Walker
              Principal, Shorewalker DMS
              Phone: 03 8899 7790
              Mobile: 0407 133 020
              • 34078
              • 76 Posts
              Quote from: shorewalker at Jun 10, 2013, 09:07 AM
              I have a new site where the Breadcrumb tag doesn't create the SPAN tag and backslash - so the items in the crumb list simply run together. Any ideas on what could cause this? (I'm using a custom property set, but this property doesn't seem to be settable anyway ...)

              Indeed, this snippet only outputs the HTML structure. The breadcrumb separator is more a style element than a semantic one, so I think it should be handled with some CSS :
              #breadcrumb li + li:before{
                content:  '/';
                margin:   0 2px;
              }
                • 27106
                • 147 Posts
                Quote from: ben_omycode at Jun 10, 2013, 04:36 PM
                The breadcrumb separator is more a style element than a semantic one, so I think it should be handled with some CSS

                Which is exactly what I did, thinking I still had a code problem somewhere. But a) I don't remember having to do this on earlier versions; and b) it might be nice to document it somewhere.
                  David Walker
                  Principal, Shorewalker DMS
                  Phone: 03 8899 7790
                  Mobile: 0407 133 020
                  • 34078
                  • 76 Posts
                  Maybe, before, you've used the original Breadcrumbs snippet from jaredc/splittingred's and not mine.
                  Can you post the snippet call and the MODx version you use ?

                  FYI, you can find the documentation in modx RTFM : http://rtfm.modx.com/display/ADDON/BreadCrumb wink
                    • 28107
                    • 230 Posts
                    I have another bug sad

                    we are using [[Breadcrumb]] right out of the box.

                    If a resource is called from a context where the not logged in user has no rights, well get the following error:
                    Fatal error: Call to a member function get() on a non-object in /lalala/core/cache/includes/elements/modsnippet/12.include.cache.php on line 134


                    This happens even though users are normally routed to an error page.

                    Disabling the snippet routes the user as expected.
                      CONIN Werbeagentur . Köln
                      http://www.conin.de
                      • 34078
                      • 76 Posts
                      Hi MacConin,

                      I'll try to reproduce the bug and fix it soon.