We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 46220
    • 66 Posts
    Hi,

    I've tried setting up my own news section (see http://gamerschain.com/gamers-chain-news/ and the left menu is working fine, though the main overview shows nothing. Perhaps it is something I've overlooked (sadly quite common with me smiley ) or perhaps the issue is a little more complex. Has anyone any idea what could be the problem?

    I did adjust the css to make it my own. But in my opinion that should not be the problem. Right now the content is:
    [[+articles]]
    
    [[!+page.nav:notempty=`
    <div class='paging'>
    	<ul class='pageList'>
    		[[+paging]]
    	</ul>
    </div>
    `]]

      • 36926
      • 701 Posts
      What happens if you just put some static html in there, does that render out on page.

      Can you show us the code for any template and chunks you might of changed.
        • 36926
        • 701 Posts
        Try changing you content to something like:

        <h1>TEST</h1>
        [[+articles]]
         
        [[!+page.nav:notempty=`
        <div class='paging'>
            <ul class='pageList'>
                [[+paging]]
            </ul>
        </div>
        `]]
        


        If you can't see the <h1> within your page it looks like you might be missing the [[*content]] tag from you container template.
          • 46220
          • 66 Posts
          Quote from: bennyb at Oct 28, 2014, 04:00 PM
          Try changing you content to something like:

          <h1>TEST</h1>
          [[+articles]]
           
          [[!+page.nav:notempty=`
          <div class="paging">
              <ul class="pageList">
                  [[+paging]]
              </ul>
          </div>
          `]]
          


          If you can't see the <h1> within your page it looks like you might be missing the [[*content]] tag from you container template.</h1>

          Hi bennyb,

          It is showing the <h1> so I can only asume the call is not working correctly. As far as I know, I haven't changed any template or chunk, just the css.
            • 4172
            • 5,888 Posts
            are you sure, this is an articles - container, where you have that code?
              -------------------------------

              you can buy me a beer, if you like MIGX

              http://webcmsolutions.de/migx.html

              Thanks!
              • 46220
              • 66 Posts
              I'm pretty sure that it is. I mentioned before that I only changed the css yet I failed to mention that I also use my own template. Though that should not be the cause of why content is not showing.
                • 4172
                • 5,888 Posts
                what do you get with

                <h1>TEST</h1>
                classkey:[[*class_key]]<br />
                
                <h2>children</h2>
                [[getResources? &parents=`[[*id]]` &showHidden=`1` &tpl=`@INLINE [[+pagetitle]]`]]
                  
                [[!+page.nav:notempty=`
                <div class="paging">
                    <ul class="pageList">
                        [[+paging]]
                    </ul>
                </div>
                `]]
                  -------------------------------

                  you can buy me a beer, if you like MIGX

                  http://webcmsolutions.de/migx.html

                  Thanks!
                  • 46220
                  • 66 Posts
                  The output is

                  TEST
                  classkey:ArticlesContainer
                  children
                  Gamers Chain Open Beta Gamers Chain nearing completion - See more at: http://gamerschain.com/gamers-chain-news/#sthash.Icmhidah.dpuf

                  Ok, now that I copy paste it, it adds "- See more at: http://gamerschain.com/gamers-chain-news/#sthash.Icmhidah.dpuf", which doesn't show on the page itself.....?

                  It is a step closer though!