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)

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!


All times are GMT. The time now is 01:19 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.03445 seconds
  • Memory Usage 1,776KB
  • 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
  • (2)bbcode_code_printable
  • (7)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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