Hi Guys,
Could someone please tell me how to show subcategories navigation at the bottom? Which Layout do i need to edit?
Thank you
Karen
Hi Karen,
sorry for the delay.
I think the default.php in /views/tmpl/ should be the right file. Try it with an "override".
Karen
You can also do this with a modified version of Standard Categories Layout for paginated Subcategories 3.2 which is in the Categories section of the Layouts - do Not Activate it!!!
In the Before section of the Layout you will see
{cat_title_begin}
<div class="jd_subcats_title_text" style=" width: 100%;">{subcats_title_text}</div>
<!-- Categories paginated layout title -->
<div id="pageNavPosition" class="pageNavPosition"></div>
{cat_title_end}
<div class="jd_clear"></div>
<div id="results" class="jd_subcats_main" style="" />
Modify this by making the line with pageNavPosition into a comment
{cat_title_begin}
<div class="jd_subcats_title_text" style=" width: 100%;">{subcats_title_text}</div>
<!-- Categories paginated layout title -->
<!-- <div id="pageNavPosition" class="pageNavPosition"></div> -->
{cat_title_end}
<div class="jd_clear"></div>
<div id="results" class="jd_subcats_main" style="" />
Then in the After Section make it
</div>
<!-- Categories paginated layout title after -->
<div id="pageNavPosition" class="pageNavPosition"></div>
This is an either top or bottom, cannot have both.
If you do this editing by making a copy the you will need to change field "Use for Subcategories?" in the two layouts so that the original one is No and the new one is Yes. Again do not Activate!!
Colin
Thank you guys :)