PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   How Do I? - vBulletin 3.0.X (http://www.photopost.com/forum/how-do-i-vbulletin-3-0-x/)
-   -   Remove filmstrip for certain file types (http://www.photopost.com/forum/how-do-i-vbulletin-3-0-x/118266-remove-filmstrip-certain-file-types.html)

BrentWilson May 10th, 2005 12:44 AM

Remove filmstrip for certain file types
 
Is it possible to remove the film strip display from files that have the extension of .wmv .mpg .mpeg .mp3 .wma .mov etc etc etc

The filmstrip serves no purpose in these situations :)

dcpaq2 January 13th, 2006 04:40 PM

Yes I would like to know how to disable the film strip as well.

I dont like the film strip and would rather not have it.

I dont see anywhere in the admin control panel to disable this.

Doug

KW802 January 13th, 2006 04:46 PM

Quote:

Originally Posted by dcpaq2
Yes I would like to know how to disable the film strip as well.

I dont like the film strip and would rather not have it.

I dont see anywhere in the admin control panel to disable this.

Doug

vBa Gallery => Modify Settings => Show Image Options (showimage.php) => Number of Image in Filmstrip
Quote:

This option will allow you to display the thumbnails of a specified number of previous/next images in a "filmstrip". Set this option to '0' to disable it.

KW802 January 13th, 2006 04:54 PM

Quote:

Originally Posted by BrentWilson
Is it possible to remove the film strip display from files that have the extension of .wmv .mpg .mpeg .mp3 .wma .mov etc etc etc

The filmstrip serves no purpose in these situations :)

Familiar with PHP? :D If so, you want to change this query to select where extension is not equal to your list...
Quote:

$filmcache = array();
$getids = $db->query_read("
SELECT $votequery images.imageid, images.userid, images.thumbname, extension
FROM " . TABLE_PREFIX . "adv_gallery_images AS images
$favquery
WHERE " . implode(' AND ', $wherequery) . "
ORDER BY $doorderby $direction, images.imageid DESC
" . iif($limit, 'LIMIT ' . $limit)
);

dcpaq2 January 13th, 2006 05:14 PM

Quote:

Originally Posted by KW802
vBa Gallery => Modify Settings => Show Image Options (showimage.php) => Number of Image in Filmstrip

Thank you so much for your help. I dont know how in the heck I missed that. LOL :)

It was right in front of my face too. :rolleyes:

Doug


All times are GMT -5. The time now is 08:25 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97