News:

Support for jDownloads 3 has been ended
Since 17 August 2023 Joomla.org has discontinued support for Joomla 3.x. Therefore, we will no longer offer official support for our Joomla 3 jDownloads version 3.9.x from January 2024.
Please update your website to the latest Joomla version (Joomla 4 or Joomla 5) as soon as possible. Afterwards, please update jDownloads to the latest published version. The longer you delay, the more difficult the upgrade process for your website is likely to be.

Main Menu
Support-Forum

How to add category link in file details page?

Started by romagromov, 25.07.2015 14:02:53

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

romagromov

How to add category link in file details page?

Best free windows software for your PC at bestwinsoft.com
  •  

romagromov

Ok, I got it.

May be somebody will find this helpful.

Open file
/components/com_jdownloads/views/downloads/tmpl/default.php

find code about line 378

$body = str_replace('{changelog_value}', $this->item->changelog, $body);

add after this libe code:

$catlink = JRoute::_("index.php?option=com_jdownloads&view=category&catid=".$this->item->cat_id."&Itemid=");
$body = str_replace('{cat_title}', '<a href="'.$catlink.'">'.$this->item->category_title.'</a>', $body); 


Then add placeholder to details layout - {cat_title}


I only can't understand how get Itemid= for this link.
Best free windows software for your PC at bestwinsoft.com
  •