We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 43517
    • 7 Posts
    privet!

    I am have problem with articles for blog on website. As say bottom links for tags and archive do not link. I have other site with blog no problems.

    am on revolution 2.2.7. friendly url are on.

    links looks like /2013/02/" title="February 2013"

    then takes to home page only. this same for all footer link.

    I do not see same problem in forums, only similar but no fix work. [ed. note: stribog last edited this post 11 years ago.]
      • 30585
      • 833 Posts
      This looks like a broken <a> tag. Can you post your template here so we can see what's wrong?
        A MODx Fanatic
        • 43517
        • 7 Posts
        Template is mostly stock template modify small bit. Footer part not modify.

        <div class="grid_4">
        <h3>Archives</h3>
        <li class="">
        <a href="/2013/04" title="April 2013">April 2013</a> (1)
        </li>
        <li class=" arc-row-alt">
        <a href="/2013/03" title="March 2013">March 2013</a> (3)
        </li>
        </div>

        Above example from render.
        And this from template.

        <div class="grid_4">
        <h3>Archives</h3>
        [[+archives]]
        </div>
        </div>


        Thanks you
          • 30585
          • 833 Posts
          Can you modify your template with this:?

          <div class="grid_4">
            <h3>Archives</h3>
            <ul>[[+archives]]</ul>
          </div>
          


          Your archives are organized as a bullet list, but the <ul> is missing. You're also closing a </div> you didn't open.

          Let us know what you get.
            A MODx Fanatic
            • 43517
            • 7 Posts
            I sorry. Here is full code for bad section.

              <div id="footer-content">
                <div class="grid_4">
            <h3>Tags</h3>
            [[+tags]]
                </div>
                <div class="grid_4">
              <h3>Archives</h3>
              [[+archives]]
                </div>
            </div>


            It render ok as ul. just the link does go anywhere. I read they should work "out of box" with Articles. But tags and archives go only to home page.