vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Forum Home Enhancements - Latest Album Pictures - Forum Home (https://vborg.vbsupport.ru/showthread.php?t=194827)

testbot 04-30-2009 04:41 PM

Quote:

Originally Posted by VBUsers (Post 1801911)
some of my members cant see the images from the gallery.

they get:
Invalid Album specified. If you followed a valid link, please notify the administrator

how can i fix that?

that sounds like a counters issue.

VBUsers 04-30-2009 04:56 PM

Quote:

Originally Posted by testbot (Post 1801934)
that sounds like a counters issue.


really? what would be a good fix for it?

but i can see the album just fine with my admin account. its just regular members cant see it.

testbot 04-30-2009 06:31 PM

Quote:

Originally Posted by VBUsers (Post 1801951)
really? what would be a good fix for it?

but i can see the album just fine with my admin account. its just regular members cant see it.

maybe try the following.

admincp>maintenance> Rebuild Recently Updated Albums

admincp>User Albums>Rebuild Thumbnails

Dalma 04-30-2009 09:20 PM

I have album moderation enabled but see newly uploaded album pictures appear using the random option. What is required to have this check to see that the photos have been approved?

vbreal 05-12-2009 04:10 AM

Quote:

Originally Posted by testbot (Post 1801467)
we're using the following mobile template and it doesn't display by default.
https://vborg.vbsupport.ru/showthread.php?t=173239

we combine that with 'Hide Style From Style Chooser' and 'Mobile Phone / iPhone / PDA Detection and Style Assignment' for a pretty nice mobile system.



thats not a style its the auto dection mod u linked me too


its not showing in what ever theme ur using because the hook isn't there the mod looks for. im trying to figure out what that hook is.

testbot 05-12-2009 01:45 PM

sorry, it's this one.
https://vborg.vbsupport.ru/showthread.php?t=174375

4yBak 05-29-2009 02:06 PM

for better look of images it would be good to use image style (border style) that we can see at pages like http://yoursite/album.php?albumid=1
I don't know which variable used for this, but I know which style has images in default vBulletin style:
PHP Code:

style="border: 1px solid rgb(209, 209, 225); 

PS: thx for hack

SaltyOnionBalls 05-30-2009 06:43 AM

I'm trying to get this to show in my header and only for certain usergroup(s).

I have had a coder do this for me before and it worked perfectly but I updated the file without backing up and it went back to default settings, can anyone help me?

SaltyOnionBalls 05-30-2009 07:39 AM

Ok, got it into my header. Now how do I restrict it so that only certain usergroup(s) picture albums randomly show instead of every usergroups? Anyone? =\

jbj 05-31-2009 12:54 AM

Great mod I love this, I dont need another license for photopost :)
One issue though, how do I have the thumbnails come up for users that are not logged in??

I enabeld view albums on unregistered users with no success.
Any assistance would help thanks!!!

abrecher 06-02-2009 01:40 AM

Quote:

Originally Posted by valdet (Post 1687903)
Hi Rolando,

In template afm_picture you would just need to add width or height attributes to the thumbnails

In this case they're sized 50 px

Code:

<a href="album.php?albumid=$lpicture[albumid]&amp;pictureid=$lpicture[pictureid]">
<img title="$lpicture[title]" class="inlineimg" src="picture.php?pictureid=$lpicture[pictureid]&amp;albumid=$lpicture[albumid]&amp;thumb=1" height="50px" border="0" alt="$lpicture[title]" />
</a>


Is there a way I can specify a MAX image width ?

Dalma 06-02-2009 11:43 AM

So any luck yet in modifying the script such that photo's requiring moderation are not displayed?

SaltyOnionBalls 06-03-2009 03:28 PM

Quote:

Originally Posted by abrecher (Post 1821737)
Is there a way I can specify a MAX image width ?

Just replace height with width, no?

abrecher 06-03-2009 04:41 PM

Quote:

Originally Posted by SaltyOnionBalls (Post 1822791)
Just replace height with width, no?

I want to be able to specify both, height and width.

Hasann 06-03-2009 04:51 PM

Quote:

Originally Posted by abrecher (Post 1822840)
I want to be able to specify both, height and width.

Nothing is impossible everything is possible ;) Coming Soon !!!

Bansheebob 06-03-2009 11:17 PM

Any way to change "Random album Picture" to "Members Photos"

????????????

SaltyOnionBalls 06-03-2009 11:24 PM

Hasann, could you please let me know how I am able to use some if conditional to only show pictures from a certain usergroups album.

For example; I would like to only show pictures from my subscribed usergroups albums and not regular members.

Bansheebob 06-04-2009 02:19 AM

heres another demo if anyone wants to see it.

http://www.hillclimbersforum.com

Dr.LoVe 06-04-2009 08:23 AM

Quote:

Originally Posted by abrecher (Post 1821737)
Is there a way I can specify a MAX image width ?


open
afm_picture

and repalce with

Code:

<td align="center">
<a href="album.php?albumid=$lpicture[albumid]&amp;pictureid=$lpicture[pictureid]">
<img title="$lpicture[title]" class="inlineimg" src="picture.php?pictureid=$lpicture[pictureid]&amp;albumid=$lpicture[albumid]&amp;thumb=1"  border="0" alt="$lpicture[title]" width="130" height="130" />
</a>
<br />
<a href="member.php?u=$lpicture[userid]">$lpicture[musername]</a>
</td>

u can change to any size width="130" height="130

testbot 06-04-2009 01:00 PM

Quote:

Originally Posted by Bansheebob (Post 1823027)
Any way to change "Random album Picture" to "Members Photos"

????????????

admincp> Languages & Phrases> Search in Phrases> Find and Replace

Bansheebob 06-04-2009 05:21 PM

thank you test bot (:

abrecher 06-05-2009 06:14 AM

Quote:

Originally Posted by Dr.LoVe (Post 1823203)
open
afm_picture

and repalce with

Code:

<td align="center">
<a href="album.php?albumid=$lpicture[albumid]&amp;pictureid=$lpicture[pictureid]">
<img title="$lpicture[title]" class="inlineimg" src="picture.php?pictureid=$lpicture[pictureid]&amp;albumid=$lpicture[albumid]&amp;thumb=1"  border="0" alt="$lpicture[title]" width="130" height="130" />
</a>
<br />
<a href="member.php?u=$lpicture[userid]">$lpicture[musername]</a>
</td>

u can change to any size width="130" height="130

How about a MAX width ? Adding both height and width seems to distort the thumb nails but at times we have images that are too long and mess up the layout due to their width.

Sirb13 07-03-2009 11:44 AM

Quote:

Originally Posted by jbj (Post 1820361)
Great mod I love this, I dont need another license for photopost :)
One issue though, how do I have the thumbnails come up for users that are not logged in??

I enabeld view albums on unregistered users with no success.
Any assistance would help thanks!!!

x2. Great mod!!!


... can anyone answer his question though? i would like my unregistered guests be able to view this mod...

edit: i answered this question ~ all you have to do is enable unregistered guests in Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> User Album Permissions and say yes to "can view member info" and "can view albums."

:)

Shaheen 07-05-2009 07:45 PM

Quote:

Originally Posted by Sirb13 (Post 1841979)
x2. Great mod!!!


... can anyone answer his question though? i would like my unregistered guests be able to view this mod...

edit: i answered this question ~ all you have to do is enable unregistered guests in Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> User Album Permissions and say yes to "can view member info" and "can view albums."

:)

Quote:

Originally Posted by SecurityDog (Post 1749956)
I have it :D

Just delete

Code:

                $permissions['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canviewmembers']
                AND
                $permissions['albumpermissions'] & $vbulletin->bf_ugp_albumpermissions['canviewalbum']
                AND

from the Plug-in "Latest Album Picture"


Just call me God! xD

Here you go ;)

barcena 07-16-2009 04:56 AM

Hi, I do have a question:

Will the pictures be from Public albums only? I hope so.

If anyone knows please let me know, I want to be 100% sure.

pressley 08-03-2009 12:12 PM

Hello, i have a probem:

In mozilla firefox it works fine but in internet explorer is only the text and no thumbnails...

how can i fix this ?

sunnylikbeckham 08-12-2009 05:48 PM

how can i remove the album name and pic name???

choccyclaire 08-14-2009 10:01 PM

Hmm any way to add to this by having the ability of not showing banned users pictures? Obviously I could just delete their albums but I'm rather lazy lol.

testbot 08-14-2009 10:21 PM

i wish we could have one strip that's random and one strip that is recent instead of one or the other.

testbot 08-17-2009 11:41 PM

^ is there anyway to do that?

stevetank 08-19-2009 11:53 PM

Thanks very much.

Easific 10-09-2009 04:41 PM

Is there a way to integrate the Flickr API so that it pulls the thumbnails from there and stores locally. That will save a lot of uploading trouble for the user and also save disk space for larger full size images.

cschmiedl 10-11-2009 03:13 AM

hi! i have installed it on vb 3.8.4 and i cant find it in the settings! the plug is aktive... !? thanks

STANGADDICT1234 10-12-2009 12:05 AM

Perfect....Thank You

helmica 10-15-2009 08:50 AM

hi,
i need to upgrade to vb4 are Album Pictures is ok by vb4?

thanks in advance for you help

Gav-n-Tn 10-23-2009 01:52 AM

Quote:

Originally Posted by helmica (Post 1900210)
hi,
i need to upgrade to vb4 are Album Pictures is ok by vb4?

thanks in advance for you help

Good question. By the way, I like the hook too.:D

Cees 11-09-2009 05:18 AM

Quote:

Originally Posted by cschmiedl (Post 1897886)
hi! i have installed it on vb 3.8.4 and i cant find it in the settings! the plug is aktive... !? thanks

Cant see it in whatever position. Do i have to activate it someweher. I cant see the settings either in 384

Kingdombuilder 11-11-2009 04:02 AM

Nice!! this is what I've been looking for... Great work! thanks for sharing...

Skydiver10 11-18-2009 10:54 PM

Thank you...Nice......:)

tradz 11-24-2009 02:16 AM

Installed...Very Easy...Thanks!!:D


All times are GMT. The time now is 09:57 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01586 seconds
  • Memory Usage 1,828KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_php_printable
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete