The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Pages: 1
You need to edit a lot of files to be able to do this. Edit modules/frontpage/frontpage.php and replace:
u.username
with:
u.username, GROUP_CONCAT(t.name) AS tags
and for recent replace:
LEFT JOIN #__user AS u ON (u.user_id = v.user_id AND u.status = '1')
WHERE v.status = 1
with:
LEFT JOIN #__user AS u ON (u.user_id = v.user_id AND u.status = '1')
LEFT JOIN #__video_tags AS t ON (t.video_id = v.video_id)
WHERE v.status = 1
GROUP BY v.video_id
and for featured replace:
LEFT JOIN #__user AS u ON (u.user_id = v.user_id AND u.status = '1')
with:
LEFT JOIN #__video_tags AS t ON (t.video_id = v.video_id)
GROUP BY v.video_id
Once done edit templates/your-template/frontpage.tpl.php and add the following code where you want it in the design to appear:
<?php $tags = explode(',', $video['tags']); foreach ($tags as $tag): echo '<a href="'.RELATIVE_URL.'/tag/'.e($tag).'/">'.e($tag).'</a>'; endforeach; ?>
Please make sure to add css changes.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
<?php $tags = explode(',', $video['tags']); foreach ($tags as $tag): $tag = str_replace(' ', '-', $tag); echo '<a href="'.RELATIVE_URL.'/tag/'.e($tag).'/">'.e($tag).'</a>'; endforeach; ?>
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Pages: 1