forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 plugins => Topic started by: julala on December 11, 2007, 04:03:34 pm

Title: shopping cart plugin - add to cart not show for zip files?
Post by: julala on December 11, 2007, 04:03:34 pm
Hi there

Is there a small code hack that can be applied so that the "Add image to shopping cart" line does not show above the item if the item is a zip file?

(i.e. I have pictures and zip files in the same album and only want the pictures to be able to be added to the shopping cart) *does that make sense?*

Thanks

Julia
Title: Re: shopping cart plugin - add to cart not show for zip files?
Post by: Stramm on December 11, 2007, 08:13:02 pm
Yes... makes sense...
to only show the shop dropdown for image files add in codebase.php right after
Code: [Select]
function photoshop_add_item($pic_data){
global $CONFIG, $SHOP_CONFIG, $lang_photoshop, $album;
the following
Code: [Select]
if ($pic_data['content'] != 'image') return $pic_data;
Title: Re: shopping cart plugin - add to cart not show for zip files?
Post by: julala on December 11, 2007, 09:57:06 pm
Beauty....works a treat.  Many thanks Straam.  :D