Patrik
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi,
1. We enabled some default fields for registration form but you can remove it by deselecting checkbox called “Is Active” in form builder but the username is the required field as we will be making it optional in the next release of our plugin.
2. I have made changes for social login. Can you check if it resolves your issue or not?
Regards,
PatrikHi,
We are aware of this issue and already fixed which will be available in the next version. I have applied this patch on your site.
If anyone wants to fix this then can fix by removing this line from the UsersWP plugin. https://github.com/UsersWP/userswp/blob/fa071618b506681bf7ecaaa328bd0dd14b0e40f0/includes/class-templates.php#L646
Let me know if it resolved your issue or not.
Regards,
PatrikHi,
Yes, that’s an issue from our side and you can fix it by overriding the template called ‘users.php’ from our plugin to your currently active theme by copying that file and pasting in theme/userswp/users.php. Now edit this file and change the following line
<ul class="uwp-users-list-wrap <?php echo apply_filters('uwp_users_list_ul_extra_class', 'list'); ?>"
to
<ul class="uwp-users-list-wrap <?php echo apply_filters('uwp_users_list_ul_extra_class', ''); ?>"
Let me know FTP details in private reply if you want me to do this.
Regards,
PatrikHi,
Can you please provide me the FTP details in private reply so that I can fix the issue on your site? We have already fixed this and will be available in the next release. Regarding facebook login, it may be possible that the session destroyed on some server when we redirect to the facebook and when it redirects back on our site the session data not found and that is why the error is displayed. I will fix this issue for your site as well.
Regards,
PatrikIt should work as HTML tags are allowed in translation strings in WordPress. Maybe there is a space in closing tag causing issues otherwise it should work fine.
msgstr “エラー</ strong>:ユーザー名またはパスワードが無効です。”
We will be separating the HTML tags from the translation in the next release of UsersWP. For now, you can just make changes in the core file if required.
Regards,
PatrikThis reply has been marked as private.Hi,
We have not implemented it yet but we have planned it for the future.
Regards,
PatrikHi,
Based on your description it looks like profile.php is on the root of the website as it should be there in our plugin. If it is on root of your website then you need to load the WordPress files by including wp-load.php file. We don’t provide support for customizations here. For that, you have to hire a developer. Let us know if you face any issues while setting up UsersWP plugin.
Regards,
PatrikHi,
Thanks for noticing the issue. Can you please mention a few of the strings you are not able to translate so that we can review and fix?
Regards,
PatrikHi Richard,
We have provided a filter to use for force redirect the user to a page after registration. Here is the code you can put in your functions.php of current theme or create a snippet if you are using Code Snippets plugin:
add_filter('uwp_registration_force_redirect', 'uwp_registration_force_redirect_cb'); function uwp_registration_force_redirect_cb(){ return true; }
Let me know if this resolves your problem or not.
Regards,
PatrikSeptember 12, 2019 at 6:16 am in reply to: Column change failed, you may have too many columns. #5156This reply has been marked as private.September 12, 2019 at 5:50 am in reply to: Column change failed, you may have too many columns. #5154Hi,
There is some issue with your forms as the data is not saving. Can you please check that first? I have tried to enter mobile number and other required field and when I refresh the page after submitting form the fields are showing empty. So there is some issue with your database or development.
Regards,
PatrikSeptember 11, 2019 at 2:24 pm in reply to: Column change failed, you may have too many columns. #5152This reply has been marked as private.September 11, 2019 at 12:24 pm in reply to: Column change failed, you may have too many columns. #5148Hi,
The admin user has only values for first name and last name and that is why only 2 fields are displaying. The other fields don’t have values. If values are empty then it will not display the field anywhere in profile.
User can fill the value from the account form or while registering if the fields are available in a registration form while creating from the form builder.
Regards,
Patrik -
AuthorPosts