Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
V-net Advanced Alternative Redirect Details »»
V-net Advanced Alternative Redirect
Version: 2.00, by eTiKeT? eTiKeT? is offline
Developer Last Online: Nov 2022 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.1.0 Rating:
Released: 02-23-2011 Last Update: Never Installs: 11
Template Edits
Re-useable Code Translations Is in Beta Stage  
No support by the author.

# Demo : Click
# Original Topic : Click
V-net Advanced Alternative Redirect



################## Installation ##################

Step 1

* admincp >> Styles & Templates >> Style Manager >> Theme >> Edit Templates >> additional.css: Add to the end

* Kullandıgınız Temanızda additional.css Şablonunuzu A?ın Ve En Altına Ekleyin

PHP Code:
/************************************************************************/
/* Y?nlendirme Alanı*/

.v_giris_yapiliyor {
    background: #F4F5F6 url(images/gradients/grey-up.png) bottom repeat-x;
    border: 1px solid #EFEFEF;
    text-align: left;
    height: 250px;
    width: 50&;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: #ccc 0 0 40px;
    -moz-box-shadow: 0 0 40px #ccc; }
 
    .v_giris_yapiliyor h2 {
        background: #FFDFDF ;
        border: 1px solid #FFBFBF;
        color: #CF0008;
        font-weight: bold;
        font-size: 13pt;
        margin: 10px 10px 10px 10px;
        padding: 5px 5px 5px 5px;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        box-shadow: 0 0 6px #ccc;
        -webkit-box-shadow: #ccc 0 0 6px;
        -moz-box-shadow: 0 0 6px #ccc;
        text-shadow: 0 1px 0 rgb(199, 203, 212); }


.v_giris_yapiliyor_ms {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgb(199, 203, 212);
    padding: 10px 20px 20px 20px; } 


Step 2

* admincp >> Styles & Templates >> Style Manager >> Theme >> Edit Templates >> STANDARD_REDIRECT: Change the entire
* Kullandıgınız Temanızda STANDARD_REDIRECT Şablonunu A?ın Ve Komple Degiştirin

PHP Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml"<vb:if condition="$vboptions['enablefacebookconnect']"> xmlns:fb="http://www.facebook.com/2008/fbml"</vb:if> dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
    {vb:raw headinclude}
    <title>{vb:raw pagetitle}</title>
    {vb:raw headinsert}
    {vb:raw headinclude_bottom}
</head>
<body>
<div align="center"> 

<div class="v_giris_yapiliyor">
    <form class="block vbform" method="post" action="{vb:raw formfile}" name="postvarform">
        <h2> {vb:rawphrase redirecting}</h2><br />
        
<div class="v_giris_yapiliyor_ms"> {vb:raw errormessage}

<div style="height: 10px;"> </div>
               <div align="center">
<img src="images/misc/bekleme_yapma.gif">
                </div>
<div style="height: 45px;"> </div
            
            <vb:if condition="$postvars">
                {vb:raw postvars}
                <p class="blockrow" id="click_here_p">{vb:rawphrase click_the_following_button}</p>
            </vb:if>
        </div>

        
            <div class="blockfoot actionbuttons">
            <div class="group">
                <vb:if condition="$postvars">
                    <input type="submit" class="button" id="proceed_button" value="{vb:rawphrase proceed}" onclick="proceed_click()" accesskey="s" tabindex="1" />
                <vb:else />
                    <a href="{vb:raw url}" class="textcontrol">{vb:rawphrase click_if_browser_does_not_redirect}</a>
                </vb:if>
            </div>
        </div>
    </form>
</div>

<vb:if condition="$postvars">

<!-- redirect with POST -->

<script type="text/javascript">
<!--
fetch_object('click_here_p').style.display = 'none';

myvar = "";
timeout = 18;
timerID = 0;

function proceed_click()
{
    clearTimeout(timerID);
    return true;
}

function submit_form()
{
    window.status = "Redirecting" + myvar;
    myvar = myvar + " .";
    timerID = setTimeout("submit_form();", 100);
    if (timeout > 0)
    {
        timeout -= 1;
    }
    else
    {
        clearTimeout(timerID);
        window.status = "";
        document.forms.postvarform.submit();
        fetch_object('proceed_button').disabled = true;
    }
}

submit_form();
//-->
</script>

<!-- / redirect with POST -->

<vb:else />

<noscript>
<meta http-equiv="Refresh" content="2; URL={vb:raw url}" />
</noscript>

<script type="text/javascript">
<!--
function exec_refresh()
{
    window.status = "{vb:rawphrase redirecting}" + myvar;
    myvar = myvar + " .";
    var timerID = setTimeout("exec_refresh();", 100);
    if (timeout > 0)
    {
        timeout -= 1;
    }
    else
    {
        clearTimeout(timerID);
        window.status = "";
        window.location = "{vb:raw js_url}";
    }
}

var myvar = "";
var timeout = 20;
exec_refresh();
//-->
</script>

</vb:if>{vb:raw footer}

</body>
</html> 





For the Default Colors






PHP Code:
/************************************************************************/
/* Y?nlendirme Alanı*/

.v_giris_yapiliyor {
    background: #F4F5F6 url(images/gradients/grey-up.png) bottom repeat-x;
    border: 1px solid #EFEFEF;
    text-align: left;
    height: 250px;
    width: 50&;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: #ccc 0 0 40px;
    -moz-box-shadow: 0 0 40px #ccc; }
 
    .v_giris_yapiliyor h2 {
        background: {vb:stylevar header_background};
        border:{vb:stylevar header_border};
        color:{vb:stylevar header_color};
        font-weight: bold;
        font-size: 13pt;
        margin: 10px 10px 10px 10px;
        padding: 5px 5px 5px 5px;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        box-shadow: 0 0 6px #ccc;
        -webkit-box-shadow: #ccc 0 0 6px;
        -moz-box-shadow: 0 0 6px #ccc;
        text-shadow: 0 1px 0 rgb(199, 203, 212); }


.v_giris_yapiliyor_ms {
    color:{vb:stylevar header_color};
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgb(199, 203, 212);
    padding: 10px 20px 20px 20px; } 




PHP Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml"<vb:if condition="$vboptions['enablefacebookconnect']"> xmlns:fb="http://www.facebook.com/2008/fbml"</vb:if> dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
    {vb:raw headinclude}
    <title>{vb:raw pagetitle}</title>
    {vb:raw headinsert}
    {vb:raw headinclude_bottom}
</head>
<body>
<div align="center"> 

<div class="v_giris_yapiliyor">
    <form class="block vbform" method="post" action="{vb:raw formfile}" name="postvarform">
        <h2> {vb:rawphrase redirecting}</h2><br />
        
<div class="v_giris_yapiliyor_ms"> {vb:raw errormessage}

<div style="height: 10px;"> </div>
               <div align="center">
<img src="images/misc/bekleme_yapma.gif">
                </div>
<div style="height: 45px;"> </div
            
            <vb:if condition="$postvars">
                {vb:raw postvars}
                <p class="blockrow" id="click_here_p">{vb:rawphrase click_the_following_button}</p>
            </vb:if>
        </div>

        
            <div class="actionbuttons">
            <div class="group">
                <vb:if condition="$postvars">
                    <input type="submit" class="button" id="proceed_button" value="{vb:rawphrase proceed}" onclick="proceed_click()" accesskey="s" tabindex="1" />
                <vb:else />
                    <a href="{vb:raw url}" class="textcontrol">{vb:rawphrase click_if_browser_does_not_redirect}</a>
                </vb:if>
            </div>
        </div>
    </form>
</div>

<vb:if condition="$postvars">

<!-- redirect with POST -->

<script type="text/javascript">
<!--
fetch_object('click_here_p').style.display = 'none';

myvar = "";
timeout = 18;
timerID = 0;

function proceed_click()
{
    clearTimeout(timerID);
    return true;
}

function submit_form()
{
    window.status = "Redirecting" + myvar;
    myvar = myvar + " .";
    timerID = setTimeout("submit_form();", 100);
    if (timeout > 0)
    {
        timeout -= 1;
    }
    else
    {
        clearTimeout(timerID);
        window.status = "";
        document.forms.postvarform.submit();
        fetch_object('proceed_button').disabled = true;
    }
}

submit_form();
//-->
</script>

<!-- / redirect with POST -->

<vb:else />

<noscript>
<meta http-equiv="Refresh" content="2; URL={vb:raw url}" />
</noscript>

<script type="text/javascript">
<!--
function exec_refresh()
{
    window.status = "{vb:rawphrase redirecting}" + myvar;
    myvar = myvar + " .";
    var timerID = setTimeout("exec_refresh();", 100);
    if (timeout > 0)
    {
        timeout -= 1;
    }
    else
    {
        clearTimeout(timerID);
        window.status = "";
        window.location = "{vb:raw js_url}";
    }
}

var myvar = "";
var timeout = 20;
exec_refresh();
//-->
</script>

</vb:if>{vb:raw footer}

</body>
</html> 





Do not forget to upload the attachment ftp

Download Now

File Type: zip Alternatif Redirect.zip (33.3 KB, 52 views)

Screenshots

File Type: jpg eng.jpg (19.8 KB, 0 views)
File Type: jpg t?k?e.jpg (26.3 KB, 0 views)
File Type: jpg default.jpg (18.7 KB, 0 views)

Show Your Support

  • If you like to thanks you by the author -> Click Thanks to the Author
  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 02-24-2011, 08:45 AM
archet1337's Avatar
archet1337 archet1337 is offline
 
Join Date: Sep 2009
Location: Norway
Posts: 251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed and working great on my 4.1.2 board. Thanks!

Just a tip; Change the default colors to something a bit more subtle. Pink isn't everyone's cup of tea
Reply With Quote
  #3  
Old 02-24-2011, 08:57 AM
eTiKeT?'s Avatar
eTiKeT? eTiKeT? is offline
 
Join Date: Aug 2008
Location: T?rkiye
Posts: 257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by archet1337 View Post
Installed and working great on my 4.1.2 board. Thanks!

Just a tip; Change the default colors to something a bit more subtle. Pink isn't everyone's cup of tea
Thanks OK at the first opportunity
Reply With Quote
  #4  
Old 02-24-2011, 09:18 AM
eTiKeT?'s Avatar
eTiKeT? eTiKeT? is offline
 
Join Date: Aug 2008
Location: T?rkiye
Posts: 257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Edited for the Default Colors
Reply With Quote
  #5  
Old 07-25-2011, 08:41 AM
sematopdemir sematopdemir is offline
 
Join Date: Oct 2009
Location: ankara
Posts: 111
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice job thanks
Reply With Quote
  #6  
Old 12-01-2012, 06:09 PM
princesspepper princesspepper is offline
 
Join Date: May 2010
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What does this mod do? I'm looking for one that I can use to ad adsense code to my redirect page. There is no description in this mod to indicate the function of it...
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:16 PM.


Powered by vBulletin® Version 3.9.0 Beta 2
Copyright ©2000 - 2017, vBulletin Solutions Inc.