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?
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!
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........
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
Re: Extra Fields for Customer Sign Up (Create Account) Page
Quote:
Originally Posted by
linuxguy2
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, :shocking:
Seems it's still broken with only the first entry. Pretty sure it was working with the first field but today it's not :no:
Re: Extra Fields for Customer Sign Up (Create Account) Page
Quote:
Originally Posted by
linuxguy2
MY BAD, :shocking:
Seems it's still broken with only the first entry. Pretty sure it was working with the first field but today it's not :no:
UNBAD, Ignore this entry. It works with the first field but none of the others.
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!
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.
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') ..."
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