Patrik
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi,
The username with space can’t be an issue as I have tried same on my site and it works properly. The issue can be either activation link is expired or invalid key. Also, if you don’t want to allow users to enter the username with spaces then you can try our “Restrict User Signups” add on https://userswp.io/downloads/restrict-user-signups/ which allows restricting users to enter the username with spaces.
Regards,
PatrikFor recaptcha,
You have disabled recaptcha for admin role and it was causing issues. I have fixed it on your site and will be available in the next update as well.
I have registered a new account and it redirected me to the add listing page which is working fine. It may be possible due to cache also.
Regards,
PatrikYes that is true!
Hi,
There is no fatal error in your log which can lead to error 500. It’s hard to identify the problem as it is not even caught in the error log and after deactivating the plugins. I would suggest you try another social login plugin if it works for you. I think there are some issues with server configuration or file permission and the library “Hybridauth” which we are using for social login is throwing an error.
Regards,
PatrikHi,
We have added the functionality to manually activate the user from backend which will be available in the next release of the plugin. Also, the activation links are expired after 24 hours by default in WordPress so that can be the case they are not able to activate their account. If this is not the case then let us know your website admin details and we will try to register and troubleshoot the issue.
Regards,
PatrikThis reply has been marked as private.This reply has been marked as private.Hi,
I have tried to log in with the facebook account and I can successfully login. Can you please check if there is any issues from your side? You need to clear cache and cookies as that can create problems if you try to login with social login for multiple times.
Regards,
PatrikFor this, you need to verify your domain from the app settings. You can follow this article https://support.google.com/cloud/answer/7454865?hl=en
Hi,
This is related to supreme directory theme. There are many filters you can use to customize it as required. Currently the theme has a filter for author link but it doesn’t have user ID passed into it so you can not use that but you can try following code which uses the default WP filter for a username changed to display name:
add_filter('get_the_author_user_nicename', 'get_the_author_user_nicename_cb', 10, 2); function get_the_author_user_nicename_cb($value, $user_id){ if(geodir_is_page('single')){ $user_info = get_userdata($user_id); if(isset($user_info->display_name)){ return $user_info->display_name; } else{ return $user_info->first_name. ' ' . $user_info->last_name; } } return $value; }
Let me know if this helps you or not. We will also put the user id in the theme’s filter so one can use it.
Regards,
PatrikThis reply has been marked as private.This reply has been marked as private.Then this can be related to security on your hosting server. Can you ask your hosting provider if there is any security which throws this type of errors for the given URL? Also, you can ask them to disable apache’s mod_security module and test if it works or not.
Regards,
PatrikHi,
Have you enabled the Google+ API while cofiguring app on google API console?
Regards,
Patrik -
AuthorPosts