vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vB.Sponsors - Forum and Category Sponsorship with Statistics (https://vborg.vbsupport.ru/showthread.php?t=103327)

bada_bing 11-15-2006 11:13 PM

Quote:

Originally Posted by Deviation (Post 1117853)
Try enclosing the vB.Sponsors code for that template in <div> tags.
HTML Code:

<div align="center">
[CODE]
</div>

Simple enough, right?;)


Awwww well this seemed to fix the issue but only within the forums that have the banner displayed turned on an in all the other forums it still throw the template off???? Any ideas?

This is what my code looks like adding the tags you suggested.. Did I do it right?

<div align="center">
<if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1"><table class="tborder" cellpadding="6" cellspacing="1" border="0" width="468" height="60" align="center">
<tr>
<td class="tcat" align="center"><span class="normal"><font size="1">
$vbphrase[sponsored_by] </font>
</span></td>
</tr>
<tr>
<td class="alt2" align="center"><span class="normal"><font size="1"><a href="vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">
<if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">
<if condition="!empty($foruminfo[sponsor_banner_big])">
<img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />
<else />
<img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />
</if>
<else />
$foruminfo[sponsor_name]
</if></a>
</if></font>
</span></td>
</tr>
</table>
</div>

Deviation 11-15-2006 11:35 PM

Try this:
HTML Code:

<if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1">
    <div align="center">
    <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="468" height="60" align="center">
          <tr>
              <td class="tcat" align="center">
              <span class="normal"><font size="1">$vbphrase[sponsored_by] </font></span>
              </td>
          </tr>
          <tr>
              <td class="alt2" align="center">
              <span class="normal">
              <font size="1">
              <a href="vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">
              <if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">
                    <if condition="!empty($foruminfo[sponsor_banner_big])">
                        <img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />
                    <else />
                        <img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />
                    </if>
              <else />
                    $foruminfo[sponsor_name]
              </if>
              </a>
              </font>
              </span>
              </td>
          </tr>
    </table>
    </div>
</if>

Be sure when posting HTML code that you enclose it with the HTML tag on the forum (looks like the <>). Otherwise its a bear to read. ;)

bada_bing 11-16-2006 02:28 AM

OK I will use the HTML tags next time sorry.. Now I tried the updated code and the weird thing is as soon as I apply that code my server spike to 80% utilization:alien:

What is going on?

bada_bing 11-16-2006 02:37 AM

Yep just verified with my Hosting provider that as soon as I add this code in my FORUMDISPLAY the server peeks to 80% Any ideas why?

Deviation 11-16-2006 10:58 AM

Quote:

Originally Posted by bada_bing (Post 1118364)
Yep just verified with my Hosting provider that as soon as I add this code in my FORUMDISPLAY the server peeks to 80% Any ideas why?

Not sure. There's nothing overly complex happening there. Have you checked to see what the template does with any changes (stock)?

bada_bing 11-16-2006 12:21 PM

Quote:

Originally Posted by Deviation (Post 1118524)
Not sure. There's nothing overly complex happening there. Have you checked to see what the template does with any changes (stock)?


If I dont add your code and just add the default code as described originally in the hack there are no issues.

Deviation 11-16-2006 12:40 PM

Quote:

Originally Posted by bada_bing (Post 1118553)
If I dont add your code and just add the default code as described originally in the hack there are no issues.

After looking at the original FORUMDISPLAY code I've included, it looks like the code you pasted initially has some additions.

Try this:
HTML Code:

        <if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1">
                <div align="center>

                                      $vbphrase[sponsored_by] <a href="
vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">

                                      <if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">

                              <if condition="!empty($foruminfo[sponsor_banner_big])">

                                  <img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />

                              <else />

                                  <img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />


                              </if>

                                      <else />

                                                $foruminfo[sponsor_name]

                                      </if></a>
                </div>

        </if>

This is the original code with a <div> tag added to center the sponsor's ad. This replaces the section of vB.Sponsor code ONLY. This isn't the full FORUMDISPLAY code.

bada_bing 11-16-2006 05:03 PM

Quote:

Originally Posted by Deviation (Post 1118567)
After looking at the original FORUMDISPLAY code I've included, it looks like the code you pasted initially has some additions.

Try this:
HTML Code:

        <if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1">
                <div align="center>

                                      $vbphrase[sponsored_by] <a href="
vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">

                                      <if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">

                              <if condition="!empty($foruminfo[sponsor_banner_big])">

                                  <img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />

                              <else />

                                  <img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />


                              </if>

                                      <else />

                                                $foruminfo[sponsor_name]

                                      </if></a>
                </div>

        </if>

This is the original code with a <div> tag added to center the sponsor's ad. This replaces the section of vB.Sponsor code ONLY. This isn't the full FORUMDISPLAY code.



Ok I added the above code and server appears good BUT the banner is still on the left side? Its still not centering the banner?

bada_bing 11-16-2006 05:17 PM

I have noticed on the code you posted there seems to a couple lines that look very identical???

HTML Code:

<if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1">
                <div align="center>
                                          $vbphrase[sponsored_by] <a href="
vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">
                              <if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">
                          <if condition="!empty($foruminfo[sponsor_banner_big])">
                                <img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />
                          <else />
                                              <img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />

                                      </if>
                                      <else />
                                                      $foruminfo[sponsor_name]
                                      </if></a>
                      </div>
                </if>

Code in question below
<img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />

<img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />

bada_bing 11-16-2006 05:26 PM

sorry to be a pest...

I have done this to correct the allignment of the banner and it works. BUT the text (Visit Our Site:) is still on the left.. How can I also Center that text or either place it under the banner or below the banner ?

HTML Code:

<if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1">
                <div align="center>
                                          $vbphrase[sponsored_by] <a href="
vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">
                              <p align="center">
                              <if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">
                          <if condition="!empty($foruminfo[sponsor_banner_big])">
                                <img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />
                          <else />
                                              <img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />

                                      </if>
                                      <else />
                                                      $foruminfo[sponsor_name]
                                      </if></a>
                      </div>
                </if>



All times are GMT. The time now is 03: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.01366 seconds
  • Memory Usage 1,789KB
  • 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
  • (6)bbcode_html_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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