• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Exclude a category from Newest Videos (Block)

Started by OliverJ,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

OliverJTopic starter

Hey, i want to exclude some Channel/categroy from my Homepage Block newest Videos ,how can i do this ?
Because i dont, want that my Visitors see this videos :)

I use PHPVibe 3.3
  •  

PHPVibe A.

Give me the categorie(s) id(s) for exclusion so I can make you the code.


OliverJTopic starter

Hey :) do you mean this : /channel/anime/2/
Category ID : 2 (Mysql)
  •  

PHPVibe A.

Yes.

tpl/main/home.php:

(newest block example)

change:
else:
$vq = "select ".$options.", ".DB_PREFIX."users.name as owner FROM ".DB_PREFIX."videos LEFT JOIN ".DB_PREFIX."users ON ".DB_PREFIX."videos.user_id = ".DB_PREFIX."users.id WHERE ".DB_PREFIX."videos.views >= 0 and pub > 0 $c_add ORDER BY ".DB_PREFIX."videos.id DESC ".this_offset($limit);
endif;


to
else:
$vq = "select ".$options.", ".DB_PREFIX."users.name as owner FROM ".DB_PREFIX."videos LEFT JOIN ".DB_PREFIX."users ON ".DB_PREFIX."videos.user_id = ".DB_PREFIX."users.id WHERE ".DB_PREFIX."videos.views >= 0 and pub > 0 AND category <> 2 $c_add ORDER BY ".DB_PREFIX."videos.id DESC ".this_offset($limit);
endif;



Notice

AND category <>


you can add it the same way to the other blocks.

 

Similar topics (7)

Important Announcement: PHPVibe Video Sharing CMS End of Life

Started by Marius P.


Replies: 1
Views: 39027

insite ads issue when selecting above/below video player location

Started by georgepanaitescu


Replies: 3
Views: 22138

The problem of video viewing PHPVibe 5.0

Started by Nayn


Replies: 25
Views: 70106

embed video does not work on v5

Started by neospider69


Replies: 6
Views: 50197

when slecting to unpublish music mp3 - next page says unpublished video ?

Started by spirog


Replies: 2
Views: 4278

video,playlist,images, etc. (frontend) select all deselect all reselect all

Started by spirog


Replies: 3
Views: 5274

Like a video - unlinke a video - relike a video does not work

Started by spirog


Replies: 7
Views: 4466