Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Thanks for your understanding!
Stiofan
Hi Mark,
I have done some testing, we are using the WP function “wp_handle_upload” and it is returning what looks to be a correct url on but its not resolving correctly as per ur example above.
I see on their plugin page they are having problems and only really say images uploaded via the wp media uploader will work correctly.
We are doing everything correctly and the “WordPress way” i would suggest you take this up with the author of that plugin, mention we are using “wp_handle_upload”
Thanks,
Stiofan
You would need to add a hook after registration to change user role to the custom field you have added.
Stiofan
Yes, or u can charge per post or per category.
Stiofan
This is not something that can be achieved easily at the moment, WPI needs the user to be registered to send them an invoice/pay, but what might be possible is having them “upgrade” their user type or pay to access parts of the site. We have done basic stuff with this but we plan on doing more in future.
See: https://wpinvoicing.com/looking-for-beta-tester-for-paid-members/Thanks,
Stiofan
Hi Fred,
It does not. If you are a GD member then you get the GD addon for free but if you are a UWP member you dont get the GD membership for free.
(i hope u understood your questions right?)Thanks,
Stiofan
December 11, 2017 at 10:44 am in reply to: Error: Something went wrong when sending email. Please contact site admin. #1180This reply has been marked as private.December 9, 2017 at 11:13 am in reply to: Error: Something went wrong when sending email. Please contact site admin. #1162Hello Sadddam,
Is your email address in your general setting the same as your domain? (like [email protected])
/wp-admin/options-general.phpSome hosts won’t let you send email from any domain apart from your own one.
If you still have problems please open your own topic and we will help further.
Thanks,
Stiofan
UWP recaptcha was active but there were no settings added, i have deactivated it, if u reactivate it please add the api settings.
Thanks,
Stiofan
triple password fields is not right… is everything up to date?
Stiofan
You might be best just hiding this with CSS for now, we are working through GDv2 so anything i give you will be obsolete when that is released. (it might even be possible to remove from setting then)
Thanks,
Stiofan
Hi Joy,
It will show you your orders and any products you might have but it does NOT let you add them from the frontend at this time.
Thanks,
Stiofan
You did not have the users-1 page set as the users apge in the UWP settings, so it was not loading the UWP CSS, please check now.
Stiofan
I have added the following snippet but not tested it, please test it and let us know.
For example if you have a custom field with html_var of “gender” then you would add a GF field of “uwp_account_gender” and that should work.Please let us know how u get on.
Stiofan
add_filter( 'gform_field_value', '_gf_populate_uwp_fields', 10, 3 ); function _gf_populate_uwp_fields( $value, $field, $name ) { $user_id = get_current_user_id(); if(!$user_id){return $value;} $values = array(); $usermeta = uwp_get_usermeta_row($user_id); if(!empty($usermeta)){ foreach($usermeta as $key=>$meta){ if (strpos($key, 'uwp_account_') === 0) { $values[$key] = $meta; } } } return isset( $values[ $name ] ) ? $values[ $name ] : $value; }
Please provide wp-admin details and i will take a look.
Stiofan
-
AuthorPosts