jDownloads Support Forum

Older Versions => jDownloads 3.2 (Support ended) => General => Topic started by: karencho on 03.11.2016 18:12:03

Title: How to show subcategories navigation at the bottom
Post by: karencho on 03.11.2016 18:12:03
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
Title: Re: How to show subcategories navigation at the bottom
Post by: Arno on 28.11.2016 12:15:48
Hi Karen,
sorry for the delay.
I think the default.php in /views/tmpl/ should be the right file. Try it with an "override".
Title: Re: How to show subcategories navigation at the bottom
Post by: ColinM on 29.11.2016 15:17:43
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
Title: Re: How to show subcategories navigation at the bottom
Post by: karencho on 01.02.2017 15:45:13
Thank you guys :)