vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Add-On Releases - Facebook userbar (https://vborg.vbsupport.ru/showthread.php?t=239833)

mjmori 11-21-2010 08:04 AM

Quote:

Originally Posted by alencete (Post 2105999)
Thank you very much! great job! But the bar could see me flying like paste down?

Was very good
Thank you :up:

To solve this problem the following files to Footer paste

and Translated in Persian

COL NIL SATIS 11-21-2010 03:14 PM

tagged for later

kfyonur 11-29-2010 10:08 AM

I am using 4.0.8 but I didn't find this code in footer..

Code:

{vb:raw ad_location.ad_footer_end}</div>
This is mine code
Code:

{vb:raw ad_location.ad_footer_start}
{vb:raw ad_location.global_above_footer}
<div id="footer" class="floatcontainer footer">

        <form action="{vb:raw vboptions.forumhome}.php" method="get" id="footer_select" class="footer_select">

                       
                <vb:if condition="$show['quickchooser']">
                        <select name="styleid" onchange="switch_id(this, 'style')">
                                <optgroup label="{vb:rawphrase quick_style_chooser}">
                                        {vb:raw quickchooserbits}
                                </optgroup>
                        </select>       
                </vb:if>
               
                <vb:if condition="$show['languagechooser']">
                        <select name="langid" onchange="switch_id(this, 'lang')">
                                <optgroup label="{vb:rawphrase quick_language_chooser}">
                                        {vb:raw languagechooserbits}
                                </optgroup>
                        </select>
                </vb:if>
        </form>

        <ul id="footer_links" class="footer_links">
                <vb:if condition="$show['contactus']"><li><a href="{vb:raw vboptions.contactuslink}" rel="nofollow" accesskey="9">{vb:rawphrase contact_us}</a></li></vb:if>
                <vb:if condition="$vboptions['hometitle']"><li><a href="{vb:raw vboptions.homeurl}">{vb:raw vboptions.hometitle}</a></li></vb:if>
                <vb:if condition="$show['admincplink']"><li><a href="{vb:raw admincpdir}/index.php{vb:raw session.sessionurl_q}">{vb:rawphrase admin}</a></li></vb:if>
                <vb:if condition="$show['modcplink']"><li><a href="{vb:raw modcpdir}/index.php{vb:raw session.sessionurl_q}">{vb:rawphrase mod}</a></li></vb:if>
                <vb:if condition="$vboptions['archiveenabled']"><li><a href="archive/index.php{vb:raw session.sessionurl_q}">{vb:rawphrase archive}</a></li></vb:if>
                {vb:raw template_hook.footer_links}
                <vb:if condition="$vboptions['privacyurl']"><li><a href="{vb:raw vboptions.privacyurl}">{vb:rawphrase privacy_statement}</a></li></vb:if>
                <vb:if condition="$vboptions['tosurl']"><li><a href="{vb:raw vboptions.tosurl}">{vb:rawphrase terms_of_service}</a></li></vb:if>
                <li><a href="{vb:raw relpath}#top" onclick="document.location.hash='top'; return false;">{vb:rawphrase top}</a></li>
        </ul>
       
       
        <vb:if condition="$show['dst_correction']">
        <!-- auto DST correction code -->
                <form action="profile.php?do=dst" method="post" name="dstform">
                        <input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
                        <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
                        <input type="hidden" name="do" value="dst" />
                </form>
                <script type="text/javascript">
                <!--
                        var tzOffset = {vb:raw bbuserinfo.timezoneoffset} + {vb:raw bbuserinfo.dstonoff};
                        var utcOffset = new Date().getTimezoneOffset() / 60;
                        if (Math.abs(tzOffset + utcOffset) == 1)
                        {        // Dst offset is 1 so its changed
                                document.forms.dstform.submit();
                        }
                //-->
                </script>
                <!-- / auto DST correction code -->
        </vb:if>
       
        <script type="text/javascript">
        <!--
                // Main vBulletin Javascript Initialization
                vBulletin_init();
        //-->
        </script>
        {vb:raw template_hook.footer_javascript}
</div>
</div> <!-- closing div for body_wrapper -->

<div class="below_body">
<div id="footer_time" class="shade footer_time">{vb:rawphrase all_times_are_gmt_x_time_now_is_y}</div>

<div id="footer_copyright" class="shade footer_copyright">
        <!-- Do not remove this copyright notice -->
        {vb:rawphrase powered_by_vbulletin}
        <!-- Do not remove this copyright notice -->       
</div>
<div id="footer_morecopyright" class="shade footer_morecopyright">
        <!-- Do not remove cronimage or your scheduled tasks will cease to function -->
        {vb:raw cronimage}
        <!-- Do not remove cronimage or your scheduled tasks will cease to function -->
        {vb:raw vboptions.copyrighttext}
</div>
<vb:if condition="$vboptions['enablefacebookconnect']">
        {vb:raw facebook_footer}
</vb:if>
</div>


nitra1000 11-30-2010 09:26 PM

I wouldn't want it at the top... too much going on up there with header ads.. Basicly with this I've removed the top set of logins and placed them at the bottom...

Then I can move the header2 ad over to the right, where it won't dominate my logo.

I've modified it heavily to produce, if any one want my codes let me know...

- Facebook Connect inside it
- Nice Friendly images for username/password text
- So it doesn't do that floaty thing
- I'm also working on making it xHTML compliant!

Leicester Forum

Harley D 12-05-2010 06:11 PM

Quote:

Originally Posted by nitra1000 (Post 2127705)
I wouldn't want it at the top... too much going on up there with header ads.. Basicly with this I've removed the top set of logins and placed them at the bottom...

Then I can move the header2 ad over to the right, where it won't dominate my logo.

I've modified it heavily to produce, if any one want my codes let me know...

- Facebook Connect inside it
- Nice Friendly images for username/password text
- So it doesn't do that floaty thing
- I'm also working on making it xHTML compliant!

Leicester Forum

Please, would like to try your version(s)

Wordplay 03-10-2011 10:50 AM

Quote:

Originally Posted by nitra1000 (Post 2127705)
I wouldn't want it at the top... too much going on up there with header ads.. Basicly with this I've removed the top set of logins and placed them at the bottom...

Then I can move the header2 ad over to the right, where it won't dominate my logo.

I've modified it heavily to produce, if any one want my codes let me know...

- Facebook Connect inside it
- Nice Friendly images for username/password text
- So it doesn't do that floaty thing
- I'm also working on making it xHTML compliant!

Leicester Forum

do share, looks great with the extra register now column. this would be great on my forum to replace the actual navbar login/userinfo.

i guess i'll have to write something like that myself.

eTiKeT? 03-10-2011 12:55 PM

Thanks İnstalled ...

Wordplay 03-10-2011 02:57 PM

this mod has a few things wrong with it. my forum is at 4.1.2 but judging by your screencap you have the same errors.

1. it is not completely at the bottom, there is a tiny gap between the bottom of the page and userbar. nitra fixed this, please let us know how.
2. even though it has rounded edges, there is a border around it which makes it square, can somebody fix that? as nitra wasn't able of fixing this neither.

on another note, how would a make a drop-down menu for one of the userbar links that goes up?

imported_dfmafia 04-01-2011 09:37 AM

Quote:

Originally Posted by nitra1000 (Post 2127705)
I wouldn't want it at the top... too much going on up there with header ads.. Basicly with this I've removed the top set of logins and placed them at the bottom...

Then I can move the header2 ad over to the right, where it won't dominate my logo.

I've modified it heavily to produce, if any one want my codes let me know...

- Facebook Connect inside it
- Nice Friendly images for username/password text
- So it doesn't do that floaty thing
- I'm also working on making it xHTML compliant!

Leicester Forum


I would be interested in what you've done with this mod.
I put mine at the top right of the logo. Looks great but, my avatars do not show up on the CMS. the forum is fine.

your24hourstore 04-02-2011 01:51 PM

PHP Code:

{vb:raw ad_location.ad_footer_end}</div

don't find this code in footer of 4.1.2


All times are GMT. The time now is 05:49 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.01215 seconds
  • Memory Usage 1,765KB
  • 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
  • (1)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (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