Forums / General Questions / Move Terms and Conditions Checkbox?

Move Terms and Conditions Checkbox?

Locked
Results 1 to 5 of 5
This thread is locked. New replies are disabled.
15 Mar 2008, 14:56
#1
starlyn avatar

starlyn

New Zenner

Join Date:
Jul 2007
Posts:
50
Plugin Contributions:
0

Move Terms and Conditions Checkbox?

My site has recently gone live and I believe the terms and conditions checkbox at the top of page two of the checkout process is too easy to skip over. This then causes frustration for the customer, who has to fill out the credit card information again after being reminded to check the box. I would like to move the checkbox and the text that goes with it to the bottom of the page right before you click the button to continue with check out. Any help with this would be great. Thanks.
15 Mar 2008, 15:41
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
Plugin Contributions:
0

Re: Move Terms and Conditions Checkbox?

Starlyn:

My site has recently gone live and I believe the terms and conditions checkbox at the top of page two of the checkout process is too easy to skip over. This then causes frustration for the customer, who has to fill out the credit card information again after being reminded to check the box. I would like to move the checkbox and the text that goes with it to the bottom of the page right before you click the button to continue with check out. Any help with this would be great. Thanks.


St,
includes/ templates/ template_default/ tpl_checkout_payment_default.php
1. save this file in your override folder
2. Look for:
3. <?php
if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
?>
<fieldset>
<legend><?php echo TABLE_HEADING_CONDITIONS; ?></legend>
<div><?php echo TEXT_CONDITIONS_DESCRIPTION;?></div>
<?php echo zen_draw_checkbox_field('conditions', '1', false, 'id="conditions"');?>
<label class="checkboxLabel" for="conditions"><?php echo TEXT_CONDITIONS_CONFIRM; ?></label>
</fieldset>
<?php
}
?>

4. move this script to the desired location which will be right above the continue check out button.:smile:
15 Mar 2008, 15:56
#3
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
Plugin Contributions:
0

Re: Move Terms and Conditions Checkbox?

haredo:

St,
includes/ templates/ template_default/ tpl_checkout_payment_default.php
1. save this file in your override folder
2. Look for:
3. <?php
if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
?>
<fieldset>
<legend><?php echo TABLE_HEADING_CONDITIONS; ?></legend>
<div><?php echo TEXT_CONDITIONS_DESCRIPTION;?></div>
<?php echo zen_draw_checkbox_field('conditions', '1', false, 'id="conditions"');?>
<label class="checkboxLabel" for="conditions"><?php echo TEXT_CONDITIONS_CONFIRM; ?></label>
</fieldset>
<?php
}
?>


St,
1. My mistake I forgot template
includes/ templates/ template_default/ template/ tpl_checkout_payment_default.php
2. save this file in your override folder.
3. Look for:

<?php
if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
?>
<fieldset>
<legend><?php echo TABLE_HEADING_CONDITIONS; ?></legend>
<div><?php echo TEXT_CONDITIONS_DESCRIPTION;?></div>
<?php echo zen_draw_checkbox_field('conditions', '1', false, 'id="conditions"');?>
<label class="checkboxLabel" for="conditions"><?php echo TEXT_CONDITIONS_CONFIRM; ?></label>
</fieldset>
<?php
}
?>

4. Place right above line 205
5. <div class="buttonRow forward"><?php echo
This will fix a customer from skipping the terms and conditions.
15 Mar 2008, 20:08
#4
starlyn avatar

starlyn

New Zenner

Join Date:
Jul 2007
Posts:
50
Plugin Contributions:
0

Re: Move Terms and Conditions Checkbox?

Awesome! Not only did someone reply to my post within the same day, it was the exact help I needed! thank you so much, haredo. That was the answer.
:clap:
15 Mar 2008, 20:12
#5
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
Plugin Contributions:
0

Re: Move Terms and Conditions Checkbox?

St,
You are most welcome and thanks for posting back that your question was resolved.
Enjoy the day,