471 comments found.
where do I access the options for this plugin?
Hello ChrisMichaelis123,
you find the fields configurator under “users” -> “Extra fields” menu
Hi vanquish, I added a checkbox field with privacy police in Register page. I just want to leave this field in the registration page only, and the problem is that now also comes in My Account page too. Such as I can remove it from My Account page? I’m using Theme My Login plugin.
Thanks! David
Hello david_peris,
First of all thank you for purchasing
For what concers what you are asking, this should happen when you are accessing to any account page (yours or of any users) if you are using an Admin account.
In this way you can see (and edit) that kind of option for any users directly from its account page.
Are you using an Admin account?
This happens to user customer in his account.
- Have you enabled the “Visible only in the register page” option for that field?
- Could you send me a screenshot of the field configuration? (send me a private message, I’ll reply with my email where you can send the screenshot)
- Could you link me (or send me via private message) the url of the site? in this way I can register and have a look to user account page
- Can I have a backend access?
Ugh, sorry, I had not seen “Visible only in the register page” option !
Thank you for your patience vanquish
Great plugin! 
No problem! You’re welcome!!
p.s.
If you enjoyed my support and/or plugin, support me leaving a rating! I would really really appreciate!
(to leave a rating, go to your profile clicking on your name in the upper-right corner, then click on “Download” tab and from there you can leave ratings to all your purchases!).
Thank you and have a nice day!
Hi, Its posible add field acceptance checkbox for terms and conditions at register page? Thanks!
David
Hello david_peris,
For your needs, I’ve just released the 2.4 version (available to download in few hours, CodeCanyon updates approval system takes awhile).
In this new version you can add fields visible only on register page. You can have a try on the demo site: Registration page
As you can see, in this case I’ve created “Accept terms & conditions” required field. This is a checkbox field with only one option and with the new “Visible only in the register page” option enabled (to see fields configuration go to the admin page . To log use “user: demo, pass: demo” credentials).
I hope you could enjoy 
Thanks vanquish! 
Hi. Is it possible ton create fields that are not displayed in the My Account page ? I would like to create visible fields and invisible one, but used in other developments. Thanks a lot 
Hello jean2000,
currently is not possible. I can consider to implement for a future release. You would like to hava a field visible only during registration process and hidden in other pages, right? let me know.
Thank you very much for your quick answer. I would like to assign custom fields to a user to read & write datas from another site via API.
So you would need a complete “hidden” fields that are not displayed neigther on registration page neither in any user profile page, right?
I can think about it and trying to implement in a future release
That’s that ! Thank you 
you’re welcome 
Hi,
First of all thank for you easy to use plugin
,
I would like to add a dropdown to the year in the datepicker field,
I found this doc: http://amsul.ca/pickadate.js/date/#accessibility-labelsbut I can’t find how to implement it on your plugin,
I will appreciate if you can send me an instruction where and how to add this part: $(’.datepicker’).pickadate({ labelMonthNext: ‘Go to the next month’, labelMonthPrev: ‘Go to the previous month’, labelMonthSelect: ‘Pick a month from the dropdown’, labelYearSelect: ‘Pick a year from the dropdown’, selectMonths: true, selectYears: true })
Thanks a lot, Moshe
Hi Moshe,
thanks to you for purchasing
Your is a nice suggestion. I’ve released an update that will include by default that two dropbox on date fileds. It will be available in few hours/half a day (CodeCanyon takes a while to approve updates).
Meanwhile, if you want to add on your own is a quite simple operation. Go to wp-user-extra-fields/inc/WPUEF_HtmlHelper.php search for jQuery( ”.wpuef_input_date” ).pickadate and add the two parameters selectMonths: true, selectYears: true.
and add this two css rules:
woocommerce form .form-row select, .woocommerce-page form .form-row select.picker__select--year
{
width:35%;
padding: 0;
}
woocommerce form .form-row select, .woocommerce-page form .form-row select.picker__select--month
{
width:25%;
padding: 0;
}
in the css/wpuef-common-html-styles.css file.
P.s. if you enjoyed the plugin and/or support, please remember to leave reating, I would really appreciate
Hi , very nice plugin . It suits my needs . Although i need to add the field to custom woocomerce page in my account .
$user_ID = get_current_user_id(); wpuef_get_field(c2,$user_ID);
But its not showing me anything .
Thanks
the wpuef_get_field() funtion doesn’t show anything because doesn’t echoes anything. It returns an object containing all the field data. try following code:
$user_ID = get_current_user_id();
$field_data = wpuef_get_field('c2',$user_ID);
echo "<pre>";
var_dump($field_data);
echo "</pre>";
you will see the object structure like:
object(stdClass)#1162 (10) {
["label"]=>
string(11) "Extra field"
["field_type"]=>
string(4) "text"
["required"]=>
bool(false)
["field_options"]=>
object(stdClass)#1145 (2) {
["size"]=>
string(5) "small"
["description"]=>
string(45) "this is visible and editable only in checkout"
}
["cid"]=>
string(2) "c2"
["woocommerce_checkout_only_editable"]=>
bool(true)
["woocommerce_visible_on_checkout"]=>
bool(true)
["editable_only_by_admin"]=>
bool(true)
["woocommerce_edit_on_billing_address_page"]=>
bool(true)
["value"]=>
string(11) "Lorem ipusm"
}
Use the object fields to echo data or other purposes.
Yeah good thanks , but how can i show in My account the File that was uploaded by this user and upload button in case he want to change the uploaded file .
Hello,
yes to display that field on my account page and make it editable, go on the Extra field menu, select the field and under the “My Account page options” select the “Let user re-upload a file” and “User can delete upload file”.
In this way that field will be editable directly on the “My Account” page (If it is not displayed, make sure that your theme is properly using the standard WooCommerce “actions” in that page, otherwise my plugin cannot hook into that page rendering the field(s) )
P.S. I’ve noticed a bug on the form rendered on the My Account page. I’ve already submitted the 2.0 update. I hope you enjoy!
Hi ,
I can already make the button appear on my account page. The thing i want to do here is to display the button in any other page , with a save button below .
I want to show the button in woocommerce/myaccount/my-orders .
In case that too work i’ve also added woocommerce hook as follows .
do_action( ‘woocommerce_edit_account_form’ );
And the button apperas in that page .
The problem here is that , when i upload an image or something else there isn’t any save button or upload button below .
Here’s the screenshot .
http://prntscr.com/994rzndo_action( ‘woocommerce_after_my_account’ );It this way the plugin will render a save button. I hope this could help you.
Can this plugin be used to add custom fields for the woocommerce customer by Admin from the back end (ie: a fixed Delivery Day), and then only visible to the customer in their profile (not editable).
Hello oomatt,
Actually not, but I’m releasing an update to implement this feature. Will be ready in a day
That’s great – keep me posted when it becomes available.
Will it add the extra field data to user meta? or proprietary?
Don’t worry I’ll let you know!
For what concerns user data, the plugin adds the infso on user meta as serialized array.
Ok, I’ve submitted the update. Will be available in few hours (CodeCanyon approval system takes awhile). Demo site is already updated, you can have a look of the new feature there.
I already use one of your plugin, WC Attach me, and I’m very satisfied with it. With regard to this other plugin, the truth is I was looking for something but I have a few questions:
- At any time you plan to enable any of the existing fields a conditional operation?
Could they be excluded from page “My Account” fields date and time?. Imagine that they are used only to indicate date and time of delivery of the order.
Regards.
Hello Gerardogm,
first of all, thank you for WC Attach me purchase
For what concers what you are asking:
- No, I’ve no plans for this kind of feature. But is a nice suggestion I will consider for a future implementation.
- You mean you want to edit these fields ONLY during checkout (I mean, you need that some fields are editable only during checkout)... right? In this case, for now is not possible but I can easily add this feature
I’ve added the 2. feature in the new 1.6 version.
I’ve submitted the update to CodeCanyon, It will be available in few hours. I’ve update the demo site too.
Have a look if still interested 
Hey Vanquish, is there an easier way to add60 or so DROPDOWN options? Rather than 1 line at a time?
Hello ceuley,
Unfortunately for now is not possible
I’ll put this on my Todo list for future releases 
I check the “Required” option, disable the “guest checkout” but doesn’t’ show me the red asterisk of Required of my custom text field. why?
Hello PurpleNinja,
due to a css bug, it doesn’t appear. I’ll release a bugfix shortly.
Ok, I’ve submitted an update. Should be available in a few hours.
P.S. in this new version, extra fields optionally can be reported into woocommerce emails. I thought this was a request of yours
Have a nice day!
pre-sale question. If a dropdown list is available during registration can that chosen value be displayed upon checkout in woocommerce? basically it’s replacing the shipping address, with a value from the registration page.
Hello ceuley,
In the current version this is not possible. But I’m working to tne next release implementing something like that.
The idea is to display (optionally) extra fields on checkout step letting the user to modify (or fill them for first time if they are registering new account during checkout).
Obviously user extra fields will not be saved if the guest checkout is permitted.
Good, thanks for the reply. I may purchase when you have that in place. Keep me posted 
Sure, I’ll let you know!
Ok,
I’ve submitted an update. In this new version the admin can now choose if an extra field can be displayed in the checkout page. If displayed, the user can edit or fill it for the first time (depends if he is a returning customer or he is registering for the first time).
Obviously the field will no be saved if guest checkout is allowed (because in this way there is no customer profile where to save it
).
The updated version will be ready to download in few hours (CodeCanyon approval process takes a while). I’ll let you know when will be ready replying here.
New version is online
Great, do you have a demo link?
Thanks, but I don’t see the EXTRA FIELD in the customers account details?
Actually I see it on the WP Profile. Can your plugin keep the drop down selection to the WooCommerce Address area? Is your plugin only for WP registration? I see fields in WooCommerce checkout but don’t see them on the Woocommerce Account page.
Sorry,
WooCommerce has no hooks to add data or forms or tables after the Addresses on My Account page.
My plugin adds extra user/customer fieds on registration page (WP and WooCommerce), let users and admins to edit them in profile page (admin and frontend) and optionally lets to display some fields on checkout page (registering value on customer profile, not on the order data). That’s it.
I noticed on your demo site, there was no shipping address field. That’s good. What if the Checkout field DROPDOWN (option) shows on the My Account Page in Woo? Or if it’s already at the selection in the dropdown for them if they visit checkout page again in future?
In the checkout page is already displayed the last value selected (on registration or during a previous checkout or because it was edited by customer in his profile page).
For what concert My Account Page, as I said woocommerce seems that there are method to plug data in data page. I will work on a workaraoud/solution. I’ll let you know.
Thanks, I trust you can figure it out
I’ll purchase right away once you let me know.
Hey Vanquish, any word on the features / request I made awhile back?
Hello culey,
I’ve just submittet 1.5 version. You can try on live demo site.
Is now possible edit fields directly on the “My Account Page”. Give a try 