PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro How Do I...? (http://www.photopost.com/forum/photopost-pro-how-do-i/)
-   -   Displaying Images Only (http://www.photopost.com/forum/photopost-pro-how-do-i/127494-displaying-images-only.html)

Al3xy September 26th, 2006 01:21 PM

Displaying Images Only
 
Which option I need to turn off in the Admin's area to turn off displays of everything that pertains to an image ?

Currently images on the index page, most popular images page, random images page, etc show the thumbnails with the usernames and image names underneath.

I'd like to show thumbnails only. Other pertinent information related to images can be shown when users click on thumbnails.

Chuck S September 26th, 2006 03:05 PM

You can turn off the thumbnail blocks in index and layout options in admin

Al3xy September 28th, 2006 02:08 AM

I selected NO to all options in the INDEX and LAYOUT options from the Admin's Control Panel, but the posters' names and images' names still display under the thumbnails.

I also noticed that such information also gets displayed under the thumbnails such as category name, username, and rating. I'd like to display only thumbnails in the CATEGORIES area since I believe other detailed information can be displayed in each image's screen, and there's no need to crowd the main index page or category pages.

Do you have a test site that shows ONLY thumbnails ?

P.S.: Below is how I customized the FEATURES option to show only thumbnails
Quote:

$featured .= <<<PPPRINT
<td align="center" bgcolor="#FFFFFF">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="background-repeat: no-repeat; background-position: center;" bgcolor="#000000" background="{$data_dir}/{$pcat}/thumbs/$photo"><a href="{$url_path}/showphoto.php?photo={$pid}">$mthumb</a></td>
</tr>
</table>
</td>
PPPRINT;

Chuck S September 28th, 2006 07:39 AM

I answered your question on how to turn things off.

Yes if you want to remove variables like name and title you need to do what is called hacking. You hack your code to achieve something it does not do much like you did with your example above.


All times are GMT -5. The time now is 07:01 AM.

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