vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=246)
-   -   Miscellaneous Hacks - Resize Images in vBadvanced News Module (https://vborg.vbsupport.ru/showthread.php?t=247434)

asabet 07-27-2010 10:00 PM

Resize Images in vBadvanced News Module
 
1 Attachment(s)
This mod will automatically resize images in the vBadvanced News Module to a given maximum width.

Step 1:

Go to adv_portal_newsbits template (under vbAdvanced CMPS templates) and search for:
PHP Code:

$news[message


If you can't find that, then search for:
PHP Code:

<blockquote class="postcontent restore">{vb:raw news.message}</blockquote


Immediately before whichever of those you find in your template, add:
PHP Code:

<div class="news IMG"


Save

---------------------

Step 2:

Go to additional.css template (under CSS templates) and add the following to that template (replace "512" with whatever max width you want):
PHP Code:

.news IMG  
{
         
max-width512px;
         
heightauto;



or for better (but still not perfect) support in Internet Explorer, use this instead:

PHP Code:

.news IMG  
{
         
max-width:512px;
  
widthexpression(this.width 512 512true);
         
heightauto;



Save


That's it. Worked for me. This mod is unsupported, as I have almost no knowledge about these things. I was able to get it working based on what I found here: http://www.vbadvanced.com/forum/showthread.php?t=40139

The vB3.8 version of this mod is here: https://vborg.vbsupport.ru/showthread.php?t=247437

FReeSTER 07-28-2010 03:12 AM

Looks like a great idea but i dont have neither of those codes on my template.

Code:

<vb:if condition="!$mod_options['portal_news_legacy']">
        <h2 class="blockrow">
                <vb:if condition="$mod_options['portal_news_showicon']">{vb:raw vba_style.portal_blockbullet}</vb:if> {vb:raw news.prefix} <a href="{vb:raw vboptions.bburl}/{vb:link thread, {vb:raw news}}">{vb:raw news.title}</a>
        </h2>
</vb:if>
<div class="<vb:if condition="$mod_options['portal_news_legacy']">blocksubhead<vb:else />blockrow</vb:if>">
        <div<vb:if condition="$mod_options['portal_news_showrating'] AND $news['rating']"> class="vba_rating{vb:raw news.rating}"</vb:if>>
                <vb:if condition="$news['subscribed'] AND $mod_options['portal_news_showsubscribed']">
                        <img alt="" class="inlineimg" src="{vb:stylevar imgdir_misc}/subscribed.gif" title="{vb:rawphrase you_are_subscribed_to_this_thread}" />
                </vb:if>
                {vb:raw news.dateposted} - {vb:rawphrase by_x, {vb:link member, {vb:raw news}, null, 'postuserid', 'postusername'}, {vb:raw news.postusername}}
        </div>
</div>
<div class="blockrow">
        <vb:if condition="$show['paperclip']">
                <span style="float:{vb:stylevar right}">
                        <a href="#" onclick="vba_attach_win({vb:raw news.threadid}); return false"><img class="inlineimg" src="{vb:stylevar imgdir_misc}/paperclip.gif" border="0" title="{vb:rawphrase x_attachments, {vb:raw news.attach}}" alt="" /></a>
                </span>
        </vb:if>
        <table width="100%">
                <tr>
                        <td valign="top">
                                <vb:if condition="$news['avatarpath']">
                                        <img align="{vb:stylevar left}" style="padding: 0 {vb:math {vb:stylevar padding}/2} {vb:math {vb:stylevar padding}/2} 0" alt="{vb:rawphrase xs_avatar, {vb:raw news.postusername}}" border="0" src="{vb:raw news.avatarpath}" />
                                </vb:if>
                                {vb:raw news.message}
                        </td>
                </tr>
        </table>
               
        <vb:if condition="$show['signature']">
                <div>__________________<br />{vb:raw news.signature}</div>
        </vb:if>
</div>
<vb:if condition="$news['attachment']">
        <div class="attachments">
                <fieldset>
                        <legend>{vb:rawphrase attached_files}</legend>
                        {vb:raw news.attachment}
                </fieldset>
        </div>
</vb:if>
<div class="postbit vba_news">
        <div class="postfoot" style="white-space: nowrap">
                <div class="textcontrols">
                        <span class="postcontrols">
                                <vb:if condition="$show['editbutton']">
                                        <a class="editpost" href="{vb:raw vboptions.bburl}/editpost.php?{vb:raw session.sessionurl}do=editpost&amp;p={vb:raw news.postid}"><img src="{vb:stylevar imgdir_button}/trans_40b.png" id="editimg_{vb:raw news.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
                                </vb:if>
               
                                <vb:if condition="$show['replybutton']">
                                        <span class="seperator">&nbsp;</span>
                                        <a class="quickreply" href="{vb:raw vboptions.bburl}/newreply.php?{vb:raw session.sessionurl}do=newreply&amp;t={vb:raw news.threadid}" rel="nofollow"><img id="replyimg_{vb:raw news.postid}" src="{vb:stylevar imgdir_button}/trans_40b.png" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a>
                                </vb:if>

                                <vb:if condition="$mod_options['portal_news_showsendfriend']">
                                        <span class="seperator">&nbsp;</span>
                                        <a href="{vb:raw vboptions.bburl}/sendmessage.php?{vb:raw session.sessionurl}do=sendtofriend&amp;t={vb:raw news.threadid}" rel="nofollow" style="padding: 0"><img alt="" border="0" src="{vb:stylevar imgdir_button}/sendtofriend.gif" title="{vb:rawphrase send_to_friend}" style="position: relative" /></a>
                                </vb:if>
               
                                <vb:if condition="$mod_options['portal_news_showprintable']">
                                        <span class="seperator">&nbsp;</span>
                                        <a href="{vb:raw vboptions.bburl}/printthread.php?{vb:raw session.sessionurl}t={vb:raw news.threadid}" rel="nofollow" style="padding: 0"><img alt="" border="0" src="{vb:stylevar imgdir_button}/printer.gif" title="{vb:rawphrase show_printable_version}" style="position: relative" /></a>
                                </vb:if>

                        </span>
                        <span class="postlinking">
                                <vb:if condition="$mod_options['portal_news_allowreplies']">
                                        {vb:raw news.replycount} <vb:if condition="$news['reply_noformat'] == 1">{vb:rawphrase reply}<vb:else />{vb:rawphrase replies}</vb:if>
                                </vb:if>
                                <vb:if condition="$mod_options['portal_news_showviews'] AND $mod_options['portal_news_allowreplies']"> | </vb:if>
                                <vb:if condition="$mod_options['portal_news_showviews']">
                                        {vb:raw news.views} {vb:rawphrase views}
                                </vb:if>
                        </span>
                </div>
        </div>
</div>
<br />
<br />

:(:(:(:o:confused:

Blooded 07-28-2010 04:16 AM

Didnt work just broke everything when i click in portal send me to mysite.com/register.php :s and everything looks bad

asabet 07-28-2010 03:31 PM

El Intocable, in your case I think you'd add it just before
PHP Code:

{vb:raw news.message

Blooded, sorry it isn't working for you. Works perfect on my site running vB4.0.5 and vBa CMPS 4.0.1.

FReeSTER 07-29-2010 01:29 AM

Quote:

Originally Posted by asabet (Post 2075825)
El Intocable, in your case I think you'd add it just before
PHP Code:

{vb:raw news.message


Thank you bro, it worked very good on vb 4.0.3

Blooded 07-29-2010 05:15 AM

Quote:

Originally Posted by asabet (Post 2075825)
El Intocable, in your case I think you'd add it just before
PHP Code:

{vb:raw news.message

Blooded, sorry it isn't working for you. Works perfect on my site running vB4.0.5 and vBa CMPS 4.0.1.

i have the same version as you maybe i edit wrong :confused:
Thanks anyway :)

Winter Sonata 08-29-2010 09:46 PM

works like a sharm :)

but there are 2 of ''' {vb:raw news.message} ''' choose the first one not the other ;)

installed

zonaenlinea 09-13-2010 12:13 AM

for vBadvanced 4.0.0 ?

in vbulletin 4.0.6 ?

DNDJ 09-13-2010 07:17 PM

work great thank very much.

elwachiman 09-23-2010 03:44 AM

Works Perfect In Vb 4.0.7 And Vbadv 4.0.1

digitaldome 02-12-2011 08:47 AM

thanks. working fine with vBadvanced CMPS v4.1.0

Juggernaut 05-01-2011 06:40 AM

Working good :D

dr.tawy 05-21-2011 08:39 PM

Great Work

Merenguista 05-22-2011 09:22 AM

thanks

Stefanus 05-24-2011 08:00 PM

To resize the image to max- width and height the following code can be used:

PHP Code:


.news IMG  {
    
max-width150px;
    
max-height150px;
    
widthexpression(this.width 150 "150px" true);
    
heightexpression(this.height 150 "150px" true);


vBadvanced CMPS v4.0.1 - vBulletin™ Version 4.1.2

hanhdn 10-17-2011 10:24 AM

thank very usefull

msametg 11-22-2011 07:53 AM

thanks. it works perfect.

usuyusu 11-25-2011 09:10 AM

Great!!!!!

I have been looking for something like this for months!!!!

:)

THANK YOU!!!!

:)

You can see it working at my site guys!!!

mradlin 12-12-2011 01:20 AM

Working great!!

Thanks

CountRock 03-04-2014 12:53 PM

Works great! thanks!

donkspurs 07-20-2014 04:14 PM

Works brilliantly! Thank you!


All times are GMT. The time now is 04:54 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.02023 seconds
  • Memory Usage 1,797KB
  • 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
  • (1)bbcode_code_printable
  • (9)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (21)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete