vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   TOS Buttons issue (https://vborg.vbsupport.ru/showthread.php?t=298550)

SwalyAaron 05-29-2013 06:44 AM

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.

[/spoiler]

Lynne 05-29-2013 12:50 PM

I don't see that javascript in the page at all, so it's not going to work - you need to add that javascript.

SwalyAaron 05-29-2013 06:00 PM

I gave up and removed it =[ I'll just make it for the specific pages ill be using


All times are GMT. The time now is 01:00 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.04106 seconds
  • Memory Usage 1,712KB
  • 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
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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