Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2011
    Posts
    150
    Plugin Contributions
    0

    Default shipping zip code... how to remove it?

    Hi,

    is there a way I can remove mandatory zip code requirements from the "Shipping Address"....?

    as well as is there a way to fix country to a specific one... all my shipments are going to just one country...

    Thanks in advance

  2. #2
    Join Date
    Aug 2011
    Posts
    3
    Plugin Contributions
    0

    Default Re: shipping zip code... how to remove it?

    1. Locate the file includes\templates\template_default\templates\tpl_modules_create_account.php, open it, then delete

    HTML Code:
    <label class="inputLabel" for="postcode"><?php echo ENTRY_POST_CODE; ?></label>
    <?php echo zen_draw_input_field('postcode', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_postcode', '40') . ' id="postcode"') . (zen_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="alert">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?>
    <br class="clearBoth" />
    2. Locate the file modules\create_account.php, find the line if (strlen($postcode) < ENTRY_POSTCODE_MIN_LENGTH) { etc. and then change everything like this:

    HTML Code:
      if (strlen($postcode) < ENTRY_POSTCODE_MIN_LENGTH) {
    
        $error = false;
    
       // $messageStack->add('create_account', ENTRY_POST_CODE_ERROR);
    
      }
    This worked for me. GL

 

 

Similar Threads

  1. Replies: 2
    Last Post: 21 Oct 2012, 09:56 PM
  2. How to remove the zip code field?
    By trickobrien in forum General Questions
    Replies: 1
    Last Post: 23 Jul 2010, 01:12 PM
  3. Help need to set up per zip code shipping module with 5 zip code areas flat fee
    By cshart in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 11 Feb 2009, 06:31 AM
  4. How Do I Remove the Post/Zip Code Field?
    By bearaman in forum General Questions
    Replies: 9
    Last Post: 20 Jun 2007, 09:39 PM
  5. Remove Zip code on Sign up page
    By huannh in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 23 Mar 2007, 11:55 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