Rahul Gandhi
Forum Replies Created
-
Hi,
Do you have any security plugins installed? This happens when the hash key we generate doesn’t match as some of the plugin and wp.com modifies it. Can create a support ticket on our site https://userswp.io/support?
Regards,
PatrikHi,
We have the function ‘uwp_get_displayed_user()’ which will return the User object of the currently displayed user profile or if you are in a loop of displaying users on the user listing page.
Regards,
PatrikHi,
To display the doc file link on the registration form, you will need to use the hook and filters we provide but depends on after which field you want to display the doc file link. To allow the user to upload file you can use the File Upload custom field.
Regards,
PatrikHi,
Can you please let us know which plugin you are using for 2FA? Our plugin might not be compatible with that but we will try to make it compatible or create our own 2FA.
Regards,
PatrikHi,
For email activation action in the registration form, we only display a message and no redirect is done but we have a hook that can be used for processing after successful registration is done. Try using the following code in your functions.php file or using the Code Snippet plugin:
add_action('uwp_after_process_register', 'uwp_after_process_register_cb'); function uwp_after_process_register_cb(){ if ( wp_doing_ajax() ) { return; } $redirect_to = home_url( '/test-page/' ); wp_redirect( $redirect_to ); exit(); }Change the test-page to whatever URL you want to redirect the user. Please note this will be done forcefully no matter what option you have selected on our registration action setting.
Regards,
PatrikHi,
We have not integrated it with our plugin but if you can post your requirements then we can surely look into it. Can you explain in detail regarding setting user ID dynamically?
Regards,
PatrikHi,
You can use the following code in your functions.php file of the currently active theme or using the Code Snippet plugin:
add_filter('uwp_account_available_tabs', 'uwp_account_available_tabs_cb'); function uwp_account_available_tabs_cb($tabs){ unset($tabs['notifications']); return $tabs; }Let me know if this works for you or not.
Regards,
PatrikHi,
The easiest way is to hide it with the CSS or you can override the template in the theme and modify it accordingly. Can you try the following code by putting it into the Appearance->Customise->Additional CSS and let me know if it works for you or not?
.bsui .uwp-profile-content .embed-responsive { display: none !important; }Regards,
PatrikHi,
This is not possible using the settings as the user will be redirected to the login page on click of the activation link and the user will redirect after successful login to the redirect setting set for the login form in the settings.
Regards,
Hi,
We are loading the bootstrap so that we can display all our pages properly and show login and registration forms in popup but if you want to disable them then you can do it from Settings->AyeCode UI->Frontend->Load CSS and Load JS set to disabled. This will stop loading our bootstrap on the frontend side and if you want to disable the same on the backend then there are settings for the same also.
Regards,
PatrikForum: Plugins
In reply to: [UsersWP - Social Login] invalid_client The OAuth client was not foundHi,
I think you have not configured it on the google developer site. I see redirect_uri_mismatch error now while signup with the google social login. You need to make sure you enter your website URL in the Authorized JavaScript origins setting of google while creating credentials and you have https://www.valletta.tv/register/uwphauth/google in the Authorized redirect URIs setting. If you are still facing issues kindly create a support request.
Regards,
PatrikForum: Plugins
In reply to: [UsersWP - Social Login] invalid_client The OAuth client was not foundHi,
Can you make sure there is no space in the Google APP ID and Google APP Secret settings? Can you create a support request on our site?
Regards,
PatrikForum: Plugins
In reply to: [UsersWP - Social Login] invalid_client The OAuth client was not foundHi,
Can you please check the settings in UsersWP->Social->Google? Make sure you have added the correct Google APP ID and Google APP Secret. If it’s still not working then please create a support request on our site https://userswp.io/support.
Regards,
Patrik