Forum for discussing general topics related to Couch.
26 posts Page 3 of 3
Clearing the cache did nothing as well. I've tried on two separate browsers on 2 computers as well with no luck. I'm going to modify the template and add a sidebar and see if that works.
Would you mind if I take a look at the issue myself?
Please PM me the FTP+Couch access creds if that is OK with you.

Thanks,
Sure thing! I pm'ed you the info! Thank you.
Thanks.

I had a look and it turned out to be a front-end issue.
The JS used by your site was latching on to the folder links and so clicking on those never resulted in the browser navigating to the linked page (the folder-view in this case).

The original markup was as follows -
Code: Select all
<!-- Work Filter -->
      <ul class="tabs portfolio-filter text-center margin-bottom-80">    
      <cms:folders masterpage='blogpost.php'>    
      <li class="tab-title filter-item"><a href="<cms:show k_folder_link />" ><cms:show k_folder_name /></a></li>        
     </cms:folders>
     </ul>

To disable the JS from acting on the links, I renamed the 'portfolio-filter' and 'filter-item' classes -
Code: Select all
<!-- Work Filter -->
      <ul class="tabs portfolio-filterx text-center margin-bottom-80">    
      <cms:folders masterpage='blogpost.php'>    
      <li class="tab-title filter-itemx"><a href="<cms:show k_folder_link />" ><cms:show k_folder_name /></a></li>        
     </cms:folders>
     </ul>

And now the links do fire.

Hope this helps.
@KK you are a savior! Thank you for the top notch support!
You are welcome :)
26 posts Page 3 of 3