PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro How Do I...? (http://www.photopost.com/forum/photopost-pro-how-do-i/)
-   -   index public but gallery private (http://www.photopost.com/forum/photopost-pro-how-do-i/136648-index-public-but-gallery-private.html)

RAFA3L May 18th, 2008 10:10 AM

index public but gallery private
 
Hello,

I would like to now if I can get the index of the galleries public, I mean, the unregistered user can see the thumbnails in the main index but can't enter to see the thumbnails galleries without register.

If I make a private gallery this is invisible to the unregistered user and I need that the user know that the gallery is there.


thanks in advance

Chuck S May 18th, 2008 10:17 AM

You can let guests view thumbnails by making everything viewable in category permissions yet in registration options set yes to the option to make guests register to view images that way all they can do is view thumbs not the actual photos.

RAFA3L May 18th, 2008 10:34 AM

Thanks Chuck,


Maybe my english is noth good, I already have all like you mean, but I need to make the user can't enter to see the thumbnails gallery, but in the home see the list of categories with thumbs.

I need make to know to the unregistered user that the categories exists (each one with his thumb on the left side), but force the register to enter and see the gallery thumb index and of course the big images.

Chuck S May 18th, 2008 10:39 AM

You cant do that sorry

To see the category you need to let them see the category meaning they can click and see the category. You can only lock them from viewing the photo.

There is no option to do what you wish. You would have to hack your install in some way to lock it down to guests like maybe this in showgallery.php

add this in bold where noted. in showgallery.php I will not support this as this would be considered code hacking. Your free to discuss stuff like this outside product support in the MOD CORNER forums where users can discuss code hacks with one another.

Code:

Content visible to verified customers only.
[/code]

RAFA3L May 18th, 2008 10:51 AM

Thanks Chuck,

Tha idea is incentivate the user to register, I will try with a splash box like you explain in Announcement box for unregistered users only post.

RAFA3L May 18th, 2008 11:10 AM

Well, this work fine, thanks

if ( $User['userid'] < 1 )
{
diewell( $Globals['pp_lang']['noregview'] );
}

Chuck S May 18th, 2008 11:26 AM

There you go have a good weekend.


All times are GMT -5. The time now is 02:29 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