vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Forum Home Enhancements - New Latest Album Pictures - Forum Home (https://vborg.vbsupport.ru/showthread.php?t=228618)

spider62 01-21-2010 11:39 AM

I would like to see the new album and album random along two lines,
how to do this ?
thank you very much

movslow 01-21-2010 12:55 PM

Quote:

Originally Posted by TimberFloorAu (Post 1962025)
Ok looked at this for a while.

There are no hooks from what I see in the beginning of forumhome, they all apply to wgo ( whats going on )

So as https://vborg.vbsupport.ru/showpost....&postcount=106 stated, you need to cheat.

Essentially this is what I did.

Find: in product-newalbum.xml file
Code:

$template_hook['forumhome_wgo_pos2'] .= $templater->render();
Change to:
Code:

$ad_location['ad_navbar_below'] .= $templater->render();
Or use my rejigged product file :)

Enjoy.

Ste

I appreciate you taking the time to review and edit that, thank you.


1.) We are also using the Shoutbox and the latest Stats under the navbar as well, and the latest album pictures is just sorta crammed in there now, lol.

Currently like this.

Latest Album Picture
Shout Box
Latest Stats

I'd like to re-arrange it like this:
Shout Box
Latest Stats
Latest Album Pictures.

What do I need to do to accomplish this?


2.) With the screenshot here --> https://vborg.vbsupport.ru/attachmen...8&d=1258911963 it shows it being placed @ the footer. There is a space between Random Album Pictures and where the pictures start, w/the reworked code, there is no space, FYI.

Thanks again for your work.

movslow 01-21-2010 01:18 PM

Also, and I don't want to throw alot at you, but is this possible ?

I've attached an image to give you an example.

To "clean" up the mod, adding styling to it like our shoutbox and latest stats?

Example --> http://movslow.com/pictures/example.jpg

Thanks
:up::up:

VonDoom 01-21-2010 01:54 PM

Quote:

Originally Posted by PinoyRepublic (Post 1957066)
i manage to move it on different location (any location you prefer).
Here's the sample www.pinoyrepublic.org i placed mine under the shoutbox.

+1 Thanks been waiting for somebody to do this b4 i installed it on my primary forum.

TimberFloorAu 01-21-2010 06:07 PM

Hi Mov.

The objective of the code change and moving this mod to under Navbar, was to do it with minimal code/template changes. As people had stated they didnt want to do manual edits.

Hence the new xml I produced has only one changed line. I think it is pertinent that we afford Atakan to change his code accordingly, when he sees fit to update.

If he doesnt within say a week, I will recode it with styleing options.

movslow 01-21-2010 08:32 PM

Quote:

Originally Posted by TimberFloorAu (Post 1962594)
Hi Mov.

The objective of the code change and moving this mod to under Navbar, was to do it with minimal code/template changes. As people had stated they didnt want to do manual edits.

Hence the new xml I produced has only one changed line. I think it is pertinent that we afford Atakan to change his code accordingly, when he sees fit to update.

If he doesnt within say a week, I will recode it with styleing options.

No problem, I understand. I was just offering some suggestions.

It has grown on me once I did the add-on for this mod. Seems to "spice" it up just enough.

Thanks
:up:

Under_Dog 01-22-2010 02:21 AM

Please add to the list of requests... a Header option.

Under_Dog 01-22-2010 02:22 AM

Works great with the latest and greatest 4.1 Suite


Thank you!


Quote:

Originally Posted by TimberFloorAu (Post 1962025)
Ok looked at this for a while.

There are no hooks from what I see in the beginning of forumhome, they all apply to wgo ( whats going on )

So as https://vborg.vbsupport.ru/showpost....&postcount=106 stated, you need to cheat.

Essentially this is what I did.

Find: in product-newalbum.xml file
Code:

$template_hook['forumhome_wgo_pos2'] .= $templater->render();
Change to:
Code:

$ad_location['ad_navbar_below'] .= $templater->render();
Or use my rejigged product file :)

Enjoy.

Ste


Under_Dog 01-22-2010 02:16 PM

I'd be willing to donate a few bucks to expedite an update for header placement (Top of forum) and for the above member mentioned options.

kersti 01-24-2010 10:46 AM

OK, this is a new request - the little green man next to the title, how do I change it to be more apt, such as a picture of a camera?

Easific 01-24-2010 11:00 AM

Dont kill the green man!! I invoke the environmental protection act!

Go to your images directory and change the image..
Replace this image: www.xyz.com/forum/images/misc/users_online.png
with the image of a camera

Easific 01-29-2010 06:37 PM

Quote:

Originally Posted by PinoyRepublic (Post 1957066)
i manage to move it on different location (any location you prefer). Here's how:

1. Goto to plugin manager then search for "New Album Picture Forum Home" there are two result select the one under "forumhome_start" hook.

2. Scroll down thru the php code and find this line
PHP Code:

$template_hook['forumhome_wgo_pos1'] .= $templater->render(); 

then replace it with this
PHP Code:

//$template_hook['forumhome_wgo_pos1'] .= $templater->render();
$ad_location['ad_navbar_below'] .= $templater->render(); 

then save it.

Hey, can you guide me how to move this to the header. I want to move this to the right of the logo. I thought maybe "ad_global_header" should work as a template hook. Is there any hook specified in the header. Obviously I am missing a lot of things here.

Preserved-steam 01-31-2010 07:02 AM

HI,

Does anyone know how to get this plug-in to work so, non members can view the latest images aswell?

Thanks

Easific 01-31-2010 09:24 AM

Ok I followed this tutorial here and created a hooks_custom.xml file
https://vborg.vbsupport.ru/showthrea...t=create+hooks
Code:

  <?xml version="1.0" encoding="ISO-8859-1" ?>
- <hooks>
- <hooktype type="My Custom Hooks">
  <hook>cushook_header_latest_album</hook>
  </hooktype>
  </hooks>

Edited my header to include
Code:

<div id="header_album">{vb:raw template_hook.cushook_header_latest_album}</div>
Put this line in the plugin
PHP Code:

$template_hook['cushook_header_latest_album'] .= $templater->render(); 

And still nothing shows up, what am I missing?

buddyheiko 01-31-2010 06:32 PM


Hello,

I did all that ( from #106 ) and I got my photos on top of my vb4.0.1 .

But I have a problem with this :
<div class="mystyle">
{vb:raw ad_location.ad_navbar_below}
</div>

What do you mean with "mystyle" ?


Heiko


Quote:

Originally Posted by PinoyRepublic (Post 1957066)
i manage to move it on different location (any location you prefer). Here's how:

1. Goto to plugin manager then search for "New Album Picture Forum Home" there are two result select the one under "forumhome_start" hook.

2. Scroll down thru the php code and find this line
PHP Code:

$template_hook['forumhome_wgo_pos1'] .= $templater->render(); 

then replace it with this
PHP Code:

//$template_hook['forumhome_wgo_pos1'] .= $templater->render();
$ad_location['ad_navbar_below'] .= $templater->render(); 

then save it.

The above code means that instead of showing the album under whats going on it will now be shown under the position of the advertisement position below the navigation bar. :)

Note #1: If you have ads in that location then it will be replaced by this mod.
Note #2: The album will show without a design it means no title bar, no border, etc. So you may want to edit your template.

To edit goto to Style Manager then edit your template. Goto Navigation / Breadcrumbs template > navbar. Search for
Code:

{vb:raw ad_location.ad_navbar_below}
then replace with this format:
Code:

START HTML CODE
{vb:raw ad_location.ad_navbar_below}
END HTML CODE

EXAMPLE:
Code:

<div class="mystyle">
{vb:raw ad_location.ad_navbar_below}
</div>

I'm not a vb coder. I just wanted to help :) so please be gentle. You are free to try but i will not be responsible whatever happen to your site.

Here's the sample www.pinoyrepublic.org i placed mine under the shoutbox.


TimberFloorAu 01-31-2010 06:59 PM

@ buddy

see https://vborg.vbsupport.ru/showthrea...25#post1962025

Poppet 02-01-2010 01:17 PM

Any news on the styling issues?

I've managed to move the album pics to the top but it looks rather "bare" for want of a better word :( To be able to add styling to match the rest of the forum would be brilliant :)

See here

Oh flip you can't see them if not logged in so I've set up a test account, username test password testtest

ComoEstaEso-com 02-01-2010 01:58 PM

This is a very nice mod!

I will either wait for the update, or for the YBMF re-code.
YBMF, I love your mods man! :D

Tripolis 02-02-2010 01:22 PM

No Guest see the Pictures.
Who can i change this?

SonicGT 02-06-2010 04:10 AM

Ok so I've been wanting this above my forum as alot of people and seeing the one post that told how to do it got me wanting it more, but I have an ad and don't want to replace it. So here is what I did to get it up on the top of the forum, and can be collapsed. this does take a decent amount of editing to do, and use these steps at your own risk, and I hope im not imposing too much by sharing these changes to get the result I was looking for

Go to products and edit the New Album Picture Forum Home product
replace

PHP Code:

$template_hook['forumhome_wgo_pos1'] .= $templater->render(); 

with

PHP Code:

$newpics2 $templater->render();
vB_Template::preRegister('navbar', array('resimler' => $newpics2)); 

Then replace the entire newalbum_picture template with this

PHP Code:

<td align="center">
    <
class="picture" href="album.php?albumid={vb:raw lpicture.albumid}&amp;attachmentid={vb:raw lpicture.attachmentid}"><img  src="attachment.php?attachmentid={vb:raw lpicture.attachmentid}&amp;thumb=1&amp;d=1258906442" alt="Image uploaded by: {vb:raw lpicture.username}" border="0" /></a>
<
br />
<
a href="member.php?u={vb:raw lpicture.userid}">{vb:raw lpicture.username}</a
<
br />
{
vb:raw lpicture.title}
</
td

And replace the entire newalbum_print template with this

PHP Code:

<div class="floatcontainer forumbit_nopost">
    <
div class="forumhead foruminfo collapse">
               <
div class="cat_ls"></div>
               <
h3>
            {
vb:raw resimlery}
                   <
class="collapse" id="collapse_album_content" href="#top">
                    <
img src="buttons/collapse_40b.png">
            </
a>
               </
h3>
               <
div class="cat_rs"></div>
       </
div>
    <
div id="album_content" class="childforum forumbit_post">
        <
div class="forumrow table" style="padding-right:0px">
            <
table class="block" cellpadding="6" cellspacing="6" border="0" width="100%" align="center">
                <
tr>
                    {
vb:raw resimler}
                </
tr>
            </
table>

        </
div>
    </
div>
</
div

And Finally edit your navbar template and add this as the last line

PHP Code:

{vb:raw resimler

Here is my result using the above steps

https://vborg.vbsupport.ru/external/2011/02/43.jpg

Easific 02-06-2010 06:09 AM

Hey, can you please tell me what does this "{vb:raw resimler}" do in all the places in above blocks of code. Maybe then I can modify your code to achieve what I want

Moondust 02-06-2010 09:43 AM

i need this as "last picture" (not random) from all Pictures.... not only from the Album

SonicGT 02-06-2010 01:28 PM

Quote:

Originally Posted by Easific (Post 1975863)
Hey, can you please tell me what does this "{vb:raw resimler}" do in all the places in above blocks of code. Maybe then I can modify your code to achieve what I want

since I'm removing the hook from the plugin I have to tell it where I want it to go that piece of code is telling vb where I want it to go in the navbar template. The preregister line I add to the plugin code also specifies the navbar template, so if you want to put it in a different template just add another preregister line, or replace navbar in the line I added with the template you wish to use it in, and place the code you mentioned there. As far as the other locations that reference it in the templates and code above that I changed, thats all part of the standard mod, so I would leave those alone

oddmud 02-06-2010 02:20 PM

styling issues..

http://www.goaliecrease.net/album.jpg
http://www.goaliecrease.net/album2.jpg

oddmud 02-06-2010 02:22 PM

can't attach pictures lame

http://www.goaliecrease.net/album.jpg
http://www.goaliecrease.net/album2.jpg

Veer 02-06-2010 03:19 PM

Quote:

Originally Posted by SonicGT (Post 1975830)
Ok so I've been wanting this above my forum as alot of people and seeing the one post that told how to do it got me wanting it more, but I have an ad and don't want to replace it. So here is what I did to get it up on the top of the forum, and can be collapsed. this does take a decent amount of editing to do, and use these steps at your own risk, and I hope im not imposing too much by sharing these changes to get the result I was looking for

Go to products and edit the New Album Picture Forum Home product
replace

PHP Code:

$template_hook['forumhome_wgo_pos1'] .= $templater->render(); 

with

PHP Code:

$newpics2 $templater->render();
vB_Template::preRegister('navbar', array('resimler' => $newpics2)); 

Then replace the entire newalbum_picture template with this

PHP Code:

<td align="center">
    <
class="picture" href="album.php?albumid={vb:raw lpicture.albumid}&amp;attachmentid={vb:raw lpicture.attachmentid}"><img  src="attachment.php?attachmentid={vb:raw lpicture.attachmentid}&amp;thumb=1&amp;d=1258906442" alt="Image uploaded by: {vb:raw lpicture.username}" border="0" /></a>
<
br />
<
a href="member.php?u={vb:raw lpicture.userid}">{vb:raw lpicture.username}</a
<
br />
{
vb:raw lpicture.title}
</
td

And replace the entire newalbum_print template with this

PHP Code:

<div class="floatcontainer forumbit_nopost">
    <
div class="forumhead foruminfo collapse">
               <
div class="cat_ls"></div>
               <
h3>
            {
vb:raw resimlery}
                   <
class="collapse" id="collapse_album_content" href="#top">
                    <
img src="buttons/collapse_40b.png">
            </
a>
               </
h3>
               <
div class="cat_rs"></div>
       </
div>
    <
div id="album_content" class="childforum forumbit_post">
        <
div class="forumrow table" style="padding-right:0px">
            <
table class="block" cellpadding="6" cellspacing="6" border="0" width="100%" align="center">
                <
tr>
                    {
vb:raw resimler}
                </
tr>
            </
table>

        </
div>
    </
div>
</
div

And Finally edit your navbar template and add this as the last line

PHP Code:

{vb:raw resimler

Here is my result using the above steps

https://vborg.vbsupport.ru/external/2011/02/43.jpg

I followed your instruction and now its appears on the top, but I believe it still needs some style enhancement to look like standard vb4 style.

thank you mate.

SonicGT 02-06-2010 03:26 PM

Quote:

Originally Posted by Veer (Post 1976075)
I followed your instruction and now its appears on the top, but I believe it still needs some style enhancement to look like standard vb4 style.

thank you mate.

I do agree with you there. If you get it closer to the full vb4 style please post up your changes or pm me with them. I just did it quickly and still not 100% sure on all the classes needed to make it look as good as I wanted it to.

Jdm Ej1 Coupe 02-08-2010 07:27 PM

Sonic is there anyway to add this to the picture background to the way you modded it? and make the wording for the Random Album Picture bold?

Thanks

Quote:

Originally Posted by dcuellar (Post 1936934)
Here's what I did.

Replace contents of template newalbum_print with (same as before):
Code:

<div id="wgo_onlineusers" class="wgo_subblock">

                                <h3><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />{vb:raw resimlery}</h3>
                                <div>
<table class="block" cellpadding="6" cellspacing="6" border="0" width="100%" align="center">
<tr>
{vb:raw resimler}
</tr>
</table>

                                </div>
                        </div>


Replace contents of template newalbum_picture with:
Code:

<td align="center" height="140px" style="background: url('images/misc/frontdrop.gif') no-repeat bottom; height:125px">       
                <a class="picture" href="album.php?albumid={vb:raw lpicture.albumid}&amp;attachmentid={vb:raw lpicture.attachmentid}"><img  src="attachment.php?attachmentid={vb:raw lpicture.attachmentid}&amp;thumb=1&amp;d=1258906442" alt="269" border="0" /></a>
<br />
<a href="member.php?u={vb:raw lpicture.userid}">{vb:raw lpicture.musername}</a>
<br />
{vb:raw lpicture.title}
</td>



And put the attached image within your 'root/images/misc' directory.
https://vborg.vbsupport.ru/attachmen...7&d=1261623409


SonicGT 02-08-2010 07:40 PM

Quote:

Originally Posted by Jdm Ej1 Coupe (Post 1977709)
Sonic is there anyway to add this to the picture background to the way you modded it? and make the wording for the Random Album Picture bold?

Thanks

to make the bold title just change
PHP Code:

{vb:raw resimlery

to
PHP Code:

<b>{vb:raw resimlery}</b

in the newalbum_print template

Im not sure what you mean by background, but since I posted my change, I've changed it again using some of the code in YBMF extention for this mod
https://vborg.vbsupport.ru/showthread.php?t=233707

so now mine looks like this

https://vborg.vbsupport.ru/external/2010/05/18.jpg

to do this just grab the js files like he mentions in that extention and change the newalbum_picture to what he has in his extention. dont change the print template to his extention if you want the look I have.

Jdm Ej1 Coupe 02-08-2010 08:22 PM

Edit

Thanks Sonic worked out great!

dollster68 02-11-2010 11:52 PM

Hello. Just wondering if there's going to be an "official" update to this mod. I loved it in 3.8, and I downloaded it thinking it would be the same. I would love the option to have the random pix up top, and I'd prefer that it be an official version of the mod instead of a work-around (I'm a novice and prefer not to get too into changing code and stuff).

Gnappy 02-14-2010 04:08 PM

1 Attachment(s)
THX Atakan KOC, very cool: installed!

But I have found one little bug: 2 lines are not shown.
The differences from your upload are the right line and the division one.
https://vborg.vbsupport.ru/external/2010/02/49.jpg

I hope you can fix this because I don't know :)

doopz 02-14-2010 06:40 PM

Quote:

Originally Posted by Gnappy (Post 1982235)
THX Atakan KOC, very cool: installed!

But I have found one little bug: 2 lines are not shown.
The differences from your upload are the right line and the division one.
https://vborg.vbsupport.ru/attachmen...1&d=1266170771

I hope you can fix this because I don't know :)

Same problem here, any fix for it?

Jabong82 02-14-2010 09:12 PM

Cool application. However can this application be modified so that only certain members can see photos?

For example what if I am only interested in seeing photos of people I am friends with as opposed to the entire community?

Thanks in advance.

Videx 02-15-2010 04:51 PM

For anyone else trying to figure out how to add names and fix the missing borders, it's in the first page of replies here.

Gnappy 02-15-2010 05:59 PM

Solved!
Thanks Videx!

jeramie78 02-15-2010 10:42 PM

how hard would it be to put this into a widget?

dosadno 02-18-2010 06:39 AM

Is there a way to add collapse buton?

samiro 02-18-2010 09:17 AM

this work with vb4.0.2 ?

drbillnye 02-19-2010 02:09 AM

Quote:

Originally Posted by BBR-APBT (Post 1926370)
Replace the templates with the following code.

Template newalbum_print
Code:

<div id="wgo_onlineusers" class="wgo_subblock">

                                <h3><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" />{vb:raw resimlery}</h3>
                                <div>
<table class="block" cellpadding="6" cellspacing="6" border="0" width="100%" align="center">
<tr>
{vb:raw resimler}
</tr>
</table>

                                </div>
                        </div>


Template newalbum_picture
Code:

<td align="center">       
                <a class="picture" href="album.php?albumid={vb:raw lpicture.albumid}&amp;attachmentid={vb:raw lpicture.attachmentid}"><img  src="attachment.php?attachmentid={vb:raw lpicture.attachmentid}&amp;thumb=1&amp;d=1258906442" alt="269" border="0" /></a>
<br />
<a href="member.php?u={vb:raw lpicture.userid}">{vb:raw lpicture.musername}</a>
<br />
{vb:raw lpicture.title}
</td>


P.S. This will also add the code for the album name and the user the photo belongs too.

Awesome! Thanks for this great plugin!


All times are GMT. The time now is 10:09 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.01994 seconds
  • Memory Usage 1,918KB
  • 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
  • (13)bbcode_code_printable
  • (17)bbcode_php_printable
  • (13)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