Page 13 of 20 FirstFirst ... 31112131415 ... LastLast
Results 121 to 130 of 198
  1. #121
    Join Date
    Jan 2009
    Location
    Montreal, Canada
    Posts
    228
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    Thanks for a great mod!

    I installed it and it worked fine on the account creation/login page, but the extra fields did not show when I clicked 'edit' further in checkout to test the ability to change info before paying. To be clear, that's the page- ...main_page=checkout_payment_address

    I'm on Zen 1.5.1 with only one other plugin, "export_shipping_information_V1.3.2.1," and it does not use any of the same files. I uploaded your mod files a second time as I read that process might contain a common error. And yes, I changed the name of the custom folder. I read something earlier in this thread that seemed to be a similar issue, but that was 2 years ago and it wasn't entirely clear. In the meantime, I turned off all the options.

    Any ideas, please?

  2. #122
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    315
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    New install of V 1.5.1 Running on Network Solutions shared hosting. Installed "extra_field_on_customer_sign_up_2-0" plugin and everything works great except when I authorize a newly registered customer no email is sent out.
    All other email functions work OK. I have searched for this problem in the forum and in the wild but could find nothing. Anyone else have this problem?
    I can't open up my site to the public today but I can probably make it available in a day or two.

    Thanks for your awesome plugin!

  3. #123
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    315
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    Did a clean install of the CLASSIC template with NO mods and the following selections for new customer registration.

    Customer Shop Status - View Shop and Prices [ 2 ]
    Customer Approval Status - Authorization Pending [ 2 ]
    When I approve the customer the Approval email goes out as advertized.

    Installed the extra fields mod and now the Approval email never shows up in my inbox....
    I have been testing on Hosttornado for several weeks now with no other issues.
    As stated in my original posting this happens on my hosting plan at Network Solutions too so I don't think their servers are the problem.

    I'm just a code hacker but I've been debugging this for two days now and can't seem to find the cause.

    Again Thanks for the great mod........

  4. #124
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    315
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    Did some trouble shooting last night and found that if I remove the last three customers_extrafield2-3-4 code but left the first one (customers_extrafield) from /admin/customer.php the customer status update email gets sent.
    To clarify I removed it in all three places in the /admin/customer.php file
    I then tried removing all but customers_extrafield2 from /admin/customer.php and the email failed.
    Tested with all 5 settings in the admin "customer details" screen set to true or false.

    While I'm here.... how do you get the customers_extrafields to be included in the "You have a new customer" email the store owner gets?

    Thanks

  5. #125
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    315
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    Quote Originally Posted by linuxguy2 View Post
    Did some trouble shooting last night and found that if I remove the last three customers_extrafield2-3-4 code but left the first one (customers_extrafield) from /admin/customer.php the customer status update email gets sent.
    To clarify I removed it in all three places in the /admin/customer.php file
    I then tried removing all but customers_extrafield2 from /admin/customer.php and the email failed.
    Tested with all 5 settings in the admin "customer details" screen set to true or false.

    While I'm here.... how do you get the customers_extrafields to be included in the "You have a new customer" email the store owner gets?

    Thanks
    MY BAD,
    Seems it's still broken with only the first entry. Pretty sure it was working with the first field but today it's not

  6. #126
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    315
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    Quote Originally Posted by linuxguy2 View Post
    MY BAD,
    Seems it's still broken with only the first entry. Pretty sure it was working with the first field but today it's not
    UNBAD, Ignore this entry. It works with the first field but none of the others.

  7. #127
    Join Date
    May 2012
    Posts
    7
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    Hello, I've installed and everything presents as expected both on the visible customer sign-up as well as the customer edit info for Admins. However, the values entered in the extra fields do not show up when reviewing with the Admin Edit window –##the field show but there is nothing in it. Thoughts on where to trouble shoot?

    Thanks!

  8. #128
    Join Date
    Jan 2009
    Location
    Montreal, Canada
    Posts
    228
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    I just realized that the Telephone field (and optional Fax) also does not appear on the checkout page to edit info so I'm going to study other threads. Still, if anyone here knows how to do this, please let me know.

  9. #129
    Join Date
    Jan 2009
    Location
    Montreal, Canada
    Posts
    228
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    I played around some more and got the fields to appear, but then after clicking Continue, noticed the new info wasn't actually added to the order. Instead of spending even more time on this, I realized using text attribute fields on some product pages was a better way to get the info I needed.

    In case someone else looks to solve the original question, adding the following to tpl_modules_checkout_new_address made the extra fields appear:
    PHP Code:
    <label class="inputLabel" for="extrafield"><?php echo ENTRY_EXTRAFIELD?></label>
    <?php echo zen_draw_input_field('extrafield'''zen_set_field_length(TABLE_CUSTOMERS'customers_extrafield''40') . ' id="extrafield"') . (zen_not_null(ENTRY_EXTRAFIELD_TEXT) ? '<span class="alert">' ENTRY_EXTRAFIELD_TEXT '</span>'''); ?>
    <br class="clearBoth" />
    ...
    <label class="inputLabel" for="extrafield4"><?php echo ENTRY_EXTRAFIELD4?></label>
    <?php echo zen_draw_textarea_field('extrafield4''30','2'$extrafield4'id="extrafield4"') . (zen_not_null(ENTRY_EXTRAFIELD4_TEXT) ? '<span class="alert">' ENTRY_EXTRAFIELD4_TEXT '</span>'''); ?>
    <br class="clearBoth" />
    My fields weren't required so I skipped the code of "<?php
    if (xx == 'true') ..."

  10. #130
    Join Date
    Sep 2011
    Posts
    26
    Plugin Contributions
    0

    Default Re: Extra Fields for Customer Sign Up (Create Account) Page

    Hi,

    First; I love the module!

    I would like my extrafields to display on the order-information-page in admin. (Not in the email-confirmation).
    Is there a clear guide how to do this?

    I've read the flowing thread but cant figure it out; http://www.zen-cart.com/showthread.p...ers-area/page2

    Could someone please help me with a simple guide how this is done?

    Thnd in advance,
    JDahlbom

 

 
Page 13 of 20 FirstFirst ... 31112131415 ... LastLast

Similar Threads

  1. v150 additional create account fields for wholesale customer
    By newbieOK in forum General Questions
    Replies: 2
    Last Post: 23 Aug 2012, 04:17 AM
  2. Extra Fields for Customer Sign Up
    By divagal in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 31 Jan 2012, 11:51 PM
  3. Create Account - modify existing fields or add extra fields?
    By sopretty in forum General Questions
    Replies: 4
    Last Post: 30 Jul 2010, 08:26 PM
  4. Extra Box on Account Sign-up Page
    By paulssports in forum General Questions
    Replies: 6
    Last Post: 1 Dec 2006, 05:50 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR