Thread: Regulations

Results 1 to 6 of 6

Threaded View

  1. #1
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,229
    Plugin Contributions
    6

    red flag Regulations

    Hi I'm trying to set up a new regulation in 'Configuration, Regulations'

    So far I've managed to set this up in the database by adding a new row. The row is called DISPLAY_DELIVERY_ON_CHECKOUT.

    This will then force the customer to tick a box once they've entered delivery instructions.

    I've edited tpl_checkout_payment_default so it displays an extra checkbox on the website to do this and the new regulation shows up in the admin however when you go through the payment process step 2 just shows up a blank page.

    This is what I've done with the code in tpl_checkout_payment_default

    <?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
    if (DISPLAY_DELIVERY_ON_CHECKOUT == 'true') {
    ?>

    <fieldset>
    <?php echo zen_draw_checkbox_field('delivery', '1', false, 'id="delivery"');?>
    <label class="checkboxLabel" for="delivery"><?php echo TEXT_DELIVERY_INSTRUCTIONS; ?></label>
    </fieldset>
    <?php
    }
    ?></fieldset>


    However if I take out this line

    <?php
    if (DISPLAY_DELIVERY_ON_CHECKOUT == 'true') {
    ?>

    The check box displays, although doesn't force the customer to tick it.

    So any ideas on how I might get this to function correctly?

    Please see the graphic attached for how step 2 of the payment process should display.

    Thanks

    Nick
    Attached Images Attached Images  

 

 

Similar Threads

  1. Help With Regulations
    By Globie in forum General Questions
    Replies: 9
    Last Post: 15 Sep 2010, 04:07 PM
  2. Adding New Regulations
    By SeaBriz in forum General Questions
    Replies: 2
    Last Post: 2 Dec 2008, 12:12 AM
  3. Add new regulations
    By ilove24 in forum General Questions
    Replies: 0
    Last Post: 28 Aug 2008, 07:39 AM
  4. Regulations Per Product?
    By gabstero in forum General Questions
    Replies: 0
    Last Post: 13 Aug 2008, 03:39 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