The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
TOS Buttons issue
I made this page following this TOS page and would like it to function, I followed a guide I posted below:
http://www.vanquishrsps.com/legal/tos.php Issue: When I click agree it does "post?" I know its an issue in the buttons code but how do I fix it? The guide: Code:
Change the value in red to the location of your agreement page, and place this in the head section of any page where you would like to check if it is the user's first visit: Code: <script type="text/javascript"> var agreementPage='agreement.html'; var cookies=document.cookie.split(';'); for(var i=0;i<cookies.length;i++) if(cookies[i]!=='agreement') window.location=agreementPage; </script> Place this in the head section of your agreement page: Code: <script type="text/javascript"> function setCookie() { var today = new Date(); var expire=new Date(today.getTime()+100e10); expire=expire.toUTCString(); document.cookie='agreement; expires=' + expire + ''; } </script> Then modify your HTML so the above function is called when the user agrees to your guidelines. If your button is a link, this would be done like so: Code: <a href="index.html" onclick="setCookie()">I Agree</a> This redirects the user to the agreement page if a certain cookie has not been set. |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|