Patrik
Forum Replies Created
-
AuthorPosts
-
You can put the following code in the functions.php file of the currently active theme:
add_filter('uwp_template_form_title', 'uwp_template_form_title_cb'); function uwp_template_form_title_cb($title){ return __($title, 'userswp'); }
This will make the title translatable and you can use .po file to translate the page title displaying in the form.
Regards,
PatrikHi,
The title is coming from the register.php template file which you can override in your theme and make changes accordingly. We also have provided a filter ‘uwp_template_form_title’ which you can use to translate the title of any forms.
Regards,
PatrikHi,
The text you are saying is in the form or it’s a page title? We already have all the strings translatable in all the forms. If you are talking about the form title then you have to change the page title to the translated text. If you can provide screenshots then it would be helpful for us to fix the issue.
Regards,
PatrikHi,
You have custom requirements and we do not provide support for customization but you can hire a developer to do that easily.
You can try the following code in your currently active theme’s functions.php file:
add_shortcode('uwp_wc_products', 'uwp_wc_products_cb'); function uwp_wc_products_cb(){ if(!is_user_logged_in()){ return; } $user = get_userdata(get_current_user_id()); $output = ''; if(function_exists('uwp_generic_tab_content')){ ob_start(); uwp_generic_tab_content($user, 'product', __('Products', 'uwp-wc')); $output = ob_get_clean(); } return $output; }
You can then use the “[uwp_wc_products]” shortcode for displaying current logged in user’s products.
Regards,
PatrikHi,
I have fixed issue on your site. The issue was due to the session. When one redirects to FB from your site and come back to your site then the session data is not available due to session destroyed so I have made changes in our plugin to fix. Please review it and let me know if it works for you or not?
Regards,
PatrikHi,
We are doing the troubleshooting for this issue on your site. We will update you as soon as we find the issue and fix it. Thanks for your patience.
Regards,
PatrikHi,
I have checked on your site and when I logged in with your given details I got redirected back to the previous page. Can you explain the steps to regenerate the issue so I can do some troubleshooting and fix it for you?
Regards,
PatrikHi,
It seems like there is some issue with your site as the default email sent after the registration contains “[#client_name#]” which is not in UWP as UWP supports “[#user_name#]” so there is something changed either in your core files or in the database by other plugins may be.
If possible, you can try uninstalling UsersWP plugin with erasing all data-enabled and install it again and check if it works or not. You can do this on the staging site instead of on live first.
Regards,
PatrikJuly 12, 2019 at 8:28 am in reply to: ReCaptcha addon: Sorry, you are not allowed to access this page. #4732Hi,
You have to use the WP Easy Updates plugin which will display a notice whenever a new update is available. You can get the plugin from here: https://wpeasyupdates.com/
Regards,
PatrikHi,
Currently, if you have password field in the registration form then it will not send activation link and will send only new registration email but if you want to force send an email activation link to users then let me know the FTP details in private reply and I will apply some fixes for you. Your above FTP is not working.
Regards,
PatrikJuly 12, 2019 at 6:27 am in reply to: ReCaptcha addon: Sorry, you are not allowed to access this page. #4728Hi,
You are using the old version of ReCaptcha add on as we have implemented the new settings interface in UsersWP core plugin, you have to update all the add ons to use the new settings interface. Currently, you have installed latest UsersWP v1.1.3 but Recaptcha add-on v1.0.3 which is an older version. Please update and let me know if any issues.
Regards,
PatrikYou are welcome!
Hi,
Can you explain in detail about how you want to use with WP Geodirectory? “Require Email Activation” is the feature of UsersWP and you can set up it for registration form so that users can log in only after email verification.
Regards,
PatrikHi,
You have disabled the author URL redirect to UsersWP profile page in settings UsersWP->General->Profile->Show Advanced and when I untick it then if fixes the redirect loop issue. Can you check from your side? I have disabled it on both live and staging site.
Regards,
PatrikHi,
I have applied the fixes. Please review it and let me know how it works for you.
Regards,
Patrik -
AuthorPosts