Results 1 to 5 of 5
  1. #1
    Join Date
    Jul 2007
    Location
    Washington, MO
    Posts
    50
    Plugin Contributions
    0

    Default 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.

  2. #2
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: Move Terms and Conditions Checkbox?

    Quote Originally Posted by Starlyn View Post
    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.

  3. #3
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: Move Terms and Conditions Checkbox?

    Quote Originally Posted by haredo View Post
    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.

  4. #4
    Join Date
    Jul 2007
    Location
    Washington, MO
    Posts
    50
    Plugin Contributions
    0

    Default 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.

  5. #5
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,196
    Plugin Contributions
    0

    Default Re: Move Terms and Conditions Checkbox?

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

 

 

Similar Threads

  1. v151 Terms and Conditions checkbox on contact us page (anti-spam)
    By Axeman in forum General Questions
    Replies: 6
    Last Post: 15 May 2014, 02:55 AM
  2. Replies: 0
    Last Post: 7 Jul 2009, 02:23 PM
  3. Coupon Restriction by Zone not working when I require Terms and Conditions checkbox
    By karma-lab in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 3
    Last Post: 8 Aug 2008, 05:27 PM
  4. Google Checkout Terms and Conditions checkbox
    By chachix in forum Addon Payment Modules
    Replies: 0
    Last Post: 18 Feb 2008, 07:17 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg