• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Categories / subcategories problem

Started by cognit21,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

cognit21Topic starter

If I have a subcategories and I want to display the videos of the categories with subcategories in the block on the main page. Videos from different subcategories of the same category in the same block! And at the moment I can display video of the categories, ie if no subcategories, or I can only display video from specific subcategories. Do you have a solution for this problem?
  •  

PHPVibe A.

I guess a change like this:

tpl/{your theme}/home.php change

if(!empty($box->ident)){ $c_add .="AND category = '".intval($box->ident)."'"; }


to

if(!empty($box->ident)){ $c_add .="AND category in (SELECT cat_id from ".DB_PREFIX."channels where cat_id = '".intval($box->ident)."' or child_of = '".intval($box->ident)."' )"; }


Should do it.

Didn't test it (I'm on mobile).
If any errors, post them.

Similar topics (7)