Rahul Gandhi
Forum Replies Created
-
This generally happens when wp_mail() function returns nothing or false. We have removed that checks in the latest version of the plugin. Please update your plugin and check if it resolves your issue.
Hi,
We have fixed this and will be available in the next release of the plugin. Here is the PR which contains the changes:https://github.com/UsersWP/userswp/pull/271 You check if it works fine as you suggested or not and let us know your inputs.
Regards,
PatrikHi,
We have used the default gravatar function of WordPress. You can use the following code to change the size of the gravatar:
add_filter('pre_get_avatar_data', 'pre_get_avatar_data_cb', 10, 1); function pre_get_avatar_data_cb($args){ if(is_uwp_profile_page()){ $args['size'] = 100; $args['width'] = 100; $args['height'] = 100; return $args; } return $args; }Please note: This will change the size of gravatar for the profile page. So if you want to change the size of gravatar on the other pages then you can use the conditional tags.
Regards,
PatrikHi,
You can use the default AJAX functionality used for WordPress. If you are asking about the function which handles the registration form is “process_register()” found in a file userswp/includes/class-forms.php. You may need to use your own function to handle the form.
Regards,
PatrikHi,
Thanks for your appreciation and suggestion. We have slightly modified your code as below:
.wpi-wpinv-settings .form-table tbody tr:first-child th[scope="row"] { min-height: 1.4rem; display: inline-block; } .wpi-wpinv-settings .form-table tbody tr:first-child th[scope="row"] h3 { position: absolute; }This will apply to only the title(<h3>) of the form and not other elements. Kindly try this code and let us know if this works for you or not.
Regarding the translation of Quote plugin, you can email us your translation file.
Regards,
PatrikHi @majaxlt,
Can you please tell us either location of the file and line number of the string or the page where it is displaying so that we can look into it and fix?
Regards,
PatrikYou are Welcome!!
Hi,
Thanks for reporting this. We have fixed it and will be in next release.
Regards,
PatrikHi,
The specific JS file for the country list is at the following path:
/wp-content/plugins/userswp/public/assets/js/countrySelect.min.js. You can try to exclude this file and see if it works fine or not.Regards,
PatrikGreat! Let us know if you need any help from our site.
There may be conflicts with other plugins or theme. I suggest you create a ticket on our official forum where we can help you out by troubleshooting. We suggest you try to deactivate other plugins and choose the default theme and if the issue still generates then we are here to help you!
Hi,
It seems there is an error sending email from your site. Try to enable WP_DEBUG and then check the error in error log. We can really provide better support in our forum where we can ask for your site details to look more into the problem.
Regards,
PatrikHi,
The problem may be with your hosting services. Your site is not able to send an email from the hosted server. UsersWP doesn’t have a module for SMTP. You can use the suggested plugin which will allow using your Gmail or other mail accounts to send email from your site. Use one of the plugin and setup based on their documentation or your developer can do it easily.
Regards,
PatrikHi @masurana,
Thanks for reporting this. We need some more information about the issue you are facing. We have used default wp_mail() function to send an email which is default function of WordPress. Also please let us know how we ruined the basic mail function of WP so that we can fix it asap. Can you tell us more about adding contact us or custom mail to their plugin? Please explain the issue in detail so that we can help you out resolving it.
Regards,
PatrikHi jmsfeir,
We have set the limit to 20 for export data and it can’t be changed without modifying core file for now. We will add a filter to that so that one can change it in next update.
Regards,
Patrik