Rahul Gandhi
Forum Replies Created
-
Hi,
For time can you let us know what date and time format are you using on your site? You can check it from Settings->General->Date Format and Time Format. Can you try changing it and see if it works or not? If not then let us know and we will look more into this.
Regards,
PatrikHi,
That is because of the different aspect ratios in the image. We do have used a 16by9 aspect ratio in the output and your images are bigger than that so it’s shrinking to fit in the space. If we do remove the class “embed-responsive embed-responsive-16by9” or change it then it will display oddly in the grid as few are bigger in height and few are smaller in height so to make them all aligned in a row we have used this class. We use 300px x 300px thumbnail of the post featured image there. If you want to change it to a medium or large image then can do by overriding the template file in your active theme. Let me know your thoughts.
Regards,
PatrikHi,
Do you want to display the values of the account field in the profile tab or you want to display the account form as a tab? Also, you can use the “More info” tab in which you can display some custom fields for which you have selected the “More info tab” in the “Show in what locations?” option while creating a custom field in the account form builder. Let me know if you have any queries.
Regards,
PatrikHi,
The height and width in the setting are for the cropping of the uploaded image so that all the images uploaded will be uniform.
Regards,
PatrikYou can override the login template in your theme and add a logo to it. Here is the info for how to override the template file https://userswp.io/docs/developers/override-templates/
You can copy the userswp/templates/bootstrap/login.php into your theme/userswp/bootstrap/ folder and then modify it.
Regards,
PatrikThis can be due to conflict. Can you create a support ticket on our site for this http://userswp.io/support?
Regards,
PatrikYou can use the Code Snippets plugin which will allow adding the PHP snippet from the backend instead of modifying the PHP file. There is no setting for this so this can be done using filter only as I provided in the last reply.
Regards,
PatrikHi,
You can use the following code in the functions.php file of the currently active theme or via the Code Snippets plugin to unset the tabs in account page:
add_filter('uwp_account_available_tabs', 'uwp_account_available_tabs_cb'); function uwp_account_available_tabs_cb($tabs){ unset($tabs['notifications']); unset($tabs['data-protection']); return $tabs; }I am not sure about which “Data protection” tab you see there but if it is from WooCommerce addon then also you can unset using the above code just make sure you use the proper slug example ‘data-protection’.
Regards,
PatrikHi,
Can you let us know which email notification you want to customize/edit? We have provided the setting for changing the email from UsersWP->Emails->User Emails and Admin emails. You can put HTML content there just make sure you keep the tags in the content as it will output the dynamic content needed in email.
Regards,
PatrikHi,
Thanks for reporting. We have noted the issue and will fix it in the next release.
Regards,
PatrikHi,
You can easily hide the sidebar using below the CSS or you can override the template file account.php in your currently active theme and remove the code which is displaying the sidebar.
.uwp_widget_account .col-lg-3.h-100.height-auto.px-0 { display: none; }Regards,
Patrik- This reply was modified 5 years, 3 months ago by Rahul Gandhi.
Forum: Plugins
In reply to: [UsersWP - Social Login] Sessions path not matching serverHi,
Can you check with your server team about why the session.save_path value is different for your site? Local value is /var/cpanel/php/sessions/ea-php74 and master value is /var/lib/php/sessions/ so it can be the reason as the code is trying to write on local path but its not available or writable.
Regards,
PatrikHi,
Can you please let us know what you have set in setting UsersWP->General->Login->Login Redirect Page? If possible please create a support ticket on our site http://userswp.io/support.
Regards,
PatrikYou can read this article https://userswp.io/docs/core-plugin/userswp-main-settings/#register and let me know if you still need help.