category view > filelist ONE PAGE
Posted: 27 Aug 2015, 15:49
Hello all,
i need to display the file lists whithin the subcategory list, on one page.
- SUBCATEGORY 1
- Download 1
- Download 2
- Download 3
- SUBCATEGORY 2
- Download 1
- Download 2
- SUBCATEGORY 3
- Download 1
- Download 2
How can I display the file lists of the subcategories?
Line 73 /components/com_phocadownload/views/category/tmpl/default.php
// Subcategories
if (!empty($this->subcategories)) {
foreach ($this->subcategories as $valueSubCat) {
echo '<div class="pd-subcategory">';
echo '<div class="list-row">';
echo '<h2>'. $valueSubCat->title.'</h2>';
HERE FILE LIST
- Download 1
- Download 2
- Download 3
I tried something with PhocaDownloadModelCategory::getFileList() and $valueSubCat->getFileList
didn't work..
Did anybody already made this hack?
Thanx for help,
Pierre
i need to display the file lists whithin the subcategory list, on one page.
- SUBCATEGORY 1
- Download 1
- Download 2
- Download 3
- SUBCATEGORY 2
- Download 1
- Download 2
- SUBCATEGORY 3
- Download 1
- Download 2
How can I display the file lists of the subcategories?
Line 73 /components/com_phocadownload/views/category/tmpl/default.php
// Subcategories
if (!empty($this->subcategories)) {
foreach ($this->subcategories as $valueSubCat) {
echo '<div class="pd-subcategory">';
echo '<div class="list-row">';
echo '<h2>'. $valueSubCat->title.'</h2>';
HERE FILE LIST
- Download 1
- Download 2
- Download 3
I tried something with PhocaDownloadModelCategory::getFileList() and $valueSubCat->getFileList
didn't work..
Did anybody already made this hack?
Thanx for help,
Pierre