Hi!
I need category title in download details page.
I trying to add placeholder {Cat_title} - but it don't work...
Thanks.
Fix it ;D
Add code
$html_cat = str_replace('{cat_title}', $cats[$i]->title, $html_cat);
to /components/com_jdownloads/views/download/tmpl/default.php
Yes. But this is not a bug more a missing feature. ;)
But i will add it.
EDIT:Quote$html_cat = str_replace('{cat_title}', $cats[$i]->title, $html_cat);
This is wrong but the required code exist always in line 381:
$body = str_replace('{cat_title}', $this->item->category_title, $body);
Quote from: Arno on 20.02.2015 13:20:14
Yes. But this is not a bug more a missing feature. ;)
But i will add it.
EDIT:This is wrong but the required code exist always in line 381:
$body = str_replace('{cat_title}', $this->item->category_title, $body);
I'm not saying that it is a bug ;D
I just correct your next build 8)
Thanks!