Excluding entire category from meta albums? Excluding entire category from meta albums?
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Excluding entire category from meta albums?

Started by dills84, March 06, 2009, 05:03:50 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

dills84

Hi there, I was just curious if anyone knew of a quick way to remove an entire Categorys albums from being displayed in the meta albums (lastup,lastcom,ect...). I tried using the "unwanted_metas" plugin, but i'd rather just have the gallery exclude it automaticly so i dont have to keep adding albums manually.

I tried changing this code in index.php
$result = cpg_db_query("SELECT description FROM {$CONFIG['TABLE_CATEGORIES']} WHERE cid = '$cat'");

To

$result = cpg_db_query("SELECT description FROM {$CONFIG['TABLE_CATEGORIES']} WHERE cid = '$cat' AND !cid = '41'");
category ID 41 is the cid i'm trying to ignore from the query. But only being a php novice this didnt work. And i got a database error whenever i clicked on a thumbnail view page.

Any suggestions? Thanks!