View Full Version : Terms and Conditions
mcottam
21-Mar-2003, 08:29 AM
Following Amazon.co.uk's pricing error and subsequent cancellation of orders. Is it possible for the next Actinic patch to incorporate a mandatory tick box that confirms customers have read and accepted the terms and conditions before continuing with the order?
My concerns are drawn by the fact that customers may argue that they did not see the terms and conditions - and therefore did not agree to them. Such an argument has not been tested by UK courts; but it was tested in a US Appeals Court last year and the court ruled that a reference to an agreement purporting to bind users did not create an enforceable contract.
The best way (recommended by out-law.com) is to put the terms and conditions on a page to which the customer is taken to whether they want to read the conditions or not. At the bottom of that page there should be a check box next to a statement that says "I have read, understood and accept these terms and conditions". Then there will be another button to proceed. Customers must check the box (i.e. click it) before they can proceed.
Mike Hughes
21-Mar-2003, 09:46 AM
I think Chris has replied to similar request earlier saying that can do something like this by by putting a statement on the order pages along the lines of "by clicking the 'next' button you are confirming that you have read and accept the terms and conditions detailed below".
Mike
mcottam
21-Mar-2003, 09:51 AM
As mentioned in my original post customers can claim to have overlooked statements such as "clicking the 'next' button' you are confirming that you have read and accept the terms and conditions detailed below". I use this statement myself, but I don't think it is enough.
At the end of the day once an order is downloaded there is no evidence that the customer has agreed to the terms and conditions. A mandatory tick box is the only feasible way of getting such evidence.
mcottam
24-Mar-2003, 11:25 AM
Is it possible for the next Actinic patch to incorporate a mandatory tick box that confirms customers have read and accepted the terms and conditions before continuing with the order?
TIA
Hi Matthew
Thanks for the suggestion. I've entered this onto the Actinic wish list.
Ben
mcottam
25-Mar-2003, 07:36 AM
Thank you
Charlie
09-Jul-2003, 03:06 PM
This is a great IDEA! Has it been done yet?
Tony Appleton
09-Jul-2003, 07:54 PM
I've just figured out how to do this in Actinic!
If you go to Design > Text > Website (cont) > Invoice Address there is a user defined field below "Moving Within One Month" - make this a required field and rename it "Tick to show you have read and agree with our terms and conditions below" or whatever
Edit Act_Order01.html and go to that field - it's round about INVOICEPROMPT014 - and change the form field to: <input type="CHECKBOX" name="INVOICEUSERDEFINED">
This then gives a required (highlighted red) checkbox that won't let the customer past the invoice page until they have checked it!
Is that good enough?!
cdicken
10-Jul-2003, 08:21 AM
Tony
Sorry to rain on your parade but even if a checkbox is marked as required in Actinic, it is not required that the box is ticked. The 'requiring' is just a way of drawing attention to it.
Someone here might be able to suggest a bit of JavaScript you put in your checkout primary template to flash up a warning if a certain checkbox is not filled in.
Tony Appleton
10-Jul-2003, 09:47 AM
Dear Chris,
I think you'll find that this method does work - have a look at my site www.1to9.com (http://www.1to9.com)
This works because I haven't assigned a value in the form field.
The user can't get passed this page without ticking the box.
Kerri
10-Jul-2003, 10:16 AM
Hi Tony
Have just looked at your site to see the tick box on T&C for myself - can't see it as your site is not taking orders yet and therefore can't go through the checkout process.
On a new topic:
I LOVE what you've done with the "tell a friend" function - GENIUS!!!
Could you tell me how to do that, or what web site i need to get the information from, it's an excellent marketing tool and a great way to cultivate and grow a health database of customers/potential customers.
eAbsinthe.com
10-Jul-2003, 11:01 AM
I've just tried it & it appears to work... I'm trying it out on my site as we speak...
cdicken
10-Jul-2003, 04:26 PM
OK - here is a another solution for getting people to confirm that they accept your terms and conditions before continuing with the checkout.
This will flash up a JavaScript 'alert' box if the box is not ticked.
First of all, do what Tony suggests...
If you go to Design > Text > Website (cont) > Invoice Address there is a user defined field below "Moving Within One Month" - make this a required field and rename it "Tick to show you have read and agree with our terms and conditions below" or whatever
Then enter the following into your Overall Layout template, below all the other script expressions.
<script language="JavaScript">
<!--
/***************************************************************
*
* ValidatePage - make sure the required fields exist
*
* Returns: false if a field is empty
*
***************************************************************/
function ValidatePage()
{
if (!document.forms[0].INVOICEMOVING.checked)
{
alert('You have not agreed to the terms and conditions!');
document.forms[0].INVOICEMOVING.focus();
return (false);
}
return (true);
}
// -->
</script>
Then in 'Act_Order01.html' locate
<input type=SUBMIT name=ACTION value="NETQUOTEVAR:NEXTBUTTON">
and replace it with
<input type=SUBMIT name=ACTION value="NETQUOTEVAR:NEXTBUTTON" onClick="ValidatePage()">
Tony Appleton
10-Jul-2003, 04:39 PM
Hi Kerri
Ignore the big red text on front page - ordering is enabled but Secpay is running in test mode, so you can go through checkout process safe in the knowledge that you won't actually buy anything!! In fact I'm only waiting for Streamline to decide I'm *worthy* enough to have a merchant facility - they're so sloooww!
Go through to checkout and on the Invoice Address page you'll see the check box field below the email address - I'll probably actually move it to near the next button eventually.
Thanks for the feedback on the Tell-a-friend function! I actually wrote it myself. It's written in PHP and links to a mySQL database on the server which records all of the details, although it doesn't have to - it can just send you a copy of the submitted details as an email if you wish. You are more than welcome to use it if you would like to - I'll try and get some time to tidy the code up a bit, comment it etc then I'll post it to this thread probably next week sometime.
Don't let the PHP bit put you off - this is my first stab at using it and it is so powerful yet fairly straightforwards to use. Although I've been unable to get the SQL UPDATE function to work so maybe some techhead could have a look and tell me what I'm doing wrong - it's bound to be something trivial that I'm missing!
Hi Chris
- I've just seen your last post - That's fine but Actinic already alerts the customer that they haven't completed the T&C checkbox - If they click<next> and the checkbox is unticked, the same page reloads but with a big box at the top telling them in red that:
"I have read, understood and accept the terms and conditions below" is required.
They cannot get past the first invoice page without checking the box!
Go to my site: www.1to9.com (http://www.1to9.com) and try it for yourself
It works - no doubt about it.
I also really like your site. It is a brilliant idea.
Are you going to put a less expensive gift plan up? Also when I looked at the second section I was almost expecting to be able to select one or more of the gifts rather than having to buy the whole package.
(Now all I need is a pregnant friend to shop for!).
Regards,
Tony Appleton
11-Jul-2003, 07:30 AM
Hi Jan
We initially tried to put together 3 tiers of gift plan, but found the logistics a bit daunting for a start-up! So we settled on one! We may expand that if it takes off.
Yes - I agree it's not aimed at the cheaper end of the market, but again we found that in order to be able to supply the quality products we want to it was not going to be cheap!
I'm obviously going to have to do a bit more work on site flow and wording - you can just buy individual packages, either from the monthly gift selections (targeted at each particular month of pregnancy) or from the baby shower section!
Many many thanks for the feedback!
cdicken
11-Jul-2003, 07:57 AM
OK Tony - I concede. It does indeed work. :)
I'll be adding your solution, as well as mine, to the knowledge base today.
eAbsinthe.com
11-Jul-2003, 08:49 AM
Chris: couple of problems with your script:
(bearing in mind that I'm virtually javascript iliterate)
Tony/your instructions alter the field below 'Moving in one month' but your script validates the 'Moving in one month' field.
If you OK the warning, it still submits the form, bringing up Tony's Actinic-based warning, which although brilliant (well done T), it less pretty than a purely Javascript-based error message which I think was your whole point in the first place!
Martin.
eAbsinthe.com
14-Jul-2003, 09:35 AM
Originally posted by eAbsinthe.com
If you OK the warning, it still submits the form, bringing up Tony's Actinic-based warning, which although brilliant (well done T), it less pretty than a purely Javascript-based error message which I think was your whole point in the first place!
Is there a simple change that can be made to the script the that it wont submit without the box being checked?
Martin.
Darren B
10-Oct-2003, 02:19 PM
I know this is an old post but i cant get Chris idea to work.
The script you have posted is different to the one in the latest AUG?
on the post you say edit the Primary page in the AUG checkout pages
also on the order 01 template you have an extra ) at the end of the statement.
I have tried both and cannot get it to work. But one question exactly under which <script> expression do i place it. I have one for normans nortree. do i place it before or after this? aswell as the actinic expressions and with more than one </script>
Help would be much appreciated, a bit of a novice with js
Cheers
Darren :)
eAbsinthe.com
10-Oct-2003, 03:24 PM
I eventually got this to work by using:
onClick="return ValidatePage()"
rather than just
onClick="ValidatePage()"
Darren B
10-Oct-2003, 03:50 PM
Nope
Still not working? I think i must be missing the obvious
Cheers
Darren :)
Darren B
13-Oct-2003, 09:17 AM
Chirs
any suggestions? Which templates should i be editing
Cheers
Darren :)
Jenny
14-Oct-2003, 12:37 PM
I can't get it to work either.. I have followed the lastest AUG The message is there in red at checkout but it doesn't matter if you click it or not it carries on.
1. change design... and changed moving with in 1 month to terms and conditions message
2.
add javascript to my act_primary
3. in act-order01, changed the next button to <input type=SUBMIT name=ACTION value="NETQUOTEVAR:NEXTBUTTON" onClick="return (ValidatePage());">
what's going on!
Jenny
:confused:
Darren B
14-Oct-2003, 01:24 PM
Jenny
Im glad i'm not the only one, for a moment i thought i was being thick
I have started a new thread called terms and conditions part 2 as i did not get any further feed back.
Hopefully someone can come up with an helping hand.
Cheers
Darren :)
Jenny
15-Oct-2003, 08:31 AM
Chris, can you help.... ,my head is exploding
Jenny
cdicken
15-Oct-2003, 03:45 PM
I'm picking this up HERE (http://community.actinic.com/showthread.php?s=&threadid=3790)
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.