Rahul Gandhi
Forum Replies Created
-
Hi,
You can extend the things using hooks and filters and template overrides but it will need to be done by the developer as it requires custom coding.
Regards,
PatrikHi,
You will need a bit of customization to achieve this. We have a filter ‘uwp_logged_in_redirect’ which can help you change the URL to a custom URL if accessing after login.
For 2nd case we don’t have a filter but here is the code if you need to check or modify: https://github.com/AyeCode/userswp/blob/e48c1adb7c31527b6ec5fabad152900665d8c479/includes/class-templates.php#L182
Who can see this link? is by another plugin which is for menu only.
Regards,
PatrikHi,
Not easily possible. You can use our shortcodes to display data about users but not the whole profile as you want. We pass and use a username from URL to get the data about the user and display his profile.
Regards,
PatrikHi,
Can you please create a support ticket on our site https://userswp.io/support/ so that our developer can take a look at your site URL? Generally, user profile images should be loading from gravatar.com but in your case, it is loading from i1.wp.com which is the CDN of Jetpack.
Regards,
PatrikHi,
There is no such email notification after account activation via email. We redirect the user to the login page after successful activation showing a message on the form and if failed then we show failed message.
Regards,
PatrikHi,
This is not possible without customization.
Regards,
PatrikHi,
To show custom field(user meta) from account tab in profile tab via shortcode is possible. You can generate a shortcode via shortcode builder by clicking on the icon next to the tab content: label. We have a shortcode called ‘UWP > User Meta’ [uwp_user_meta key=’custom_field_key’] to show custom field values for users. You can get custom_field_key from the account form builder in the custom field dropdown click on the Show Advanced button. You can see this doc from other parameters https://docs.userswp.io/article/498-uwp-user-meta. In your case, if you want to use this field value to show a map then it will need customization. You can show as many fields as you want in the single profile tab just add shortcodes for all fields and drag them all as a submenu under the tab you want to show.
Regards,
PatrikHi,
This is customization and you will need to find the hooks and filters we provide to achieve this. You will need to get the custom meta value via code and use it to output the map for location pinpoint. I would suggest you take a help of a developer for this if needed.
Regards,
PatrikHi,
Edit Account form will display those custom fields which are added via account form builder. I am not sure what you want to display else? Can you give an example or screenshot with details to understand what you need?
Regards,
PatrikHi,
That option is removed when we have introduced the profile tabs builder. Go to UsersWP->Form Builder->Profile Tabs and add the available tabs or you can add your own tab using a shortcode field which will allow you to use existing shortcodes of UsersWP and your own custom shortcodes.
Regards,
PatrikHi,
Here is the doc link showing the code for setting different email for admin emails: https://docs.userswp.io/article/621-how-to-send-admin-email-notifications-to-a-different-address
If you want to send to multiple users then here is the revised code:
add_filter('uwp_send_email_to', 'uwp_send_email_to_cb', 10, 4); function uwp_send_email_to_cb($to, $email_name, $email_vars, $is_admin){ if($is_admin && 'registration_success' == $email_name){ $to = array( '[email protected]', '[email protected]' ); } return $to; }Regards,
PatrikHi,
Here is the code snippet which will add additional social icon for tiktok:
add_filter('uwp_widget_button_group_args', 'uwp_widget_button_group_args_cb', 10, 1); function uwp_widget_button_group_args_cb($args){ if(isset($args['fields']) && !empty($args['fields'])){ $args['fields'] = 'facebook,twitter,instagram,linkedin,flickr,github,youtube,wordpress,tiktok'; } return $args; }You can as much as social links you need from the form builder and add its key in the code above with comma-separated value. You can use this code in the functions.php file of the currently active theme or via the Code Snippets plugin.
Let me know if you need more details on anything.
Regards,
PatrikHi,
It is a part of the core plugin so it should be there. Some advanced options are hidden so can you just click on the “Show Advanced” button on the top right side of the settings to check if you see more settings or not?
Regards,
PatrikHi,
Have you checked the settings in the backend UsersWP->Emails->Show Advanced->Header Background Color and all the options are there? Let me know if it helps you to solve your issue or not.
Regards,
PatrikHi,
We allow creating multiple registration forms which you can create from the UsersWP->Form Builder->Account and then there is a form options button which will show more options to be set for the form where you can select a role via option “User Role to Assign” for the users who register via that form so you can create 2 different forms and select different user roles to assign. Now on the registration form in the frontend, if you are using lightbox registration then you can select which forms to show via setting UsersWP->General->Register->Lightbox Form(s) and if you are using a page to display register form then you can use a widget UWP > Register and select the forms you want to display.
Let me know if this helps or not.
Regards,
Patrik