I've enabled the "Enable Profiles URL" to allow users to view profiles. However, this only seems to be working for certain users even though ALL users do have a URL. Seems to only work for users who have made a post previously, see screenshot below:
The screenshot is missing. Please add it to allow us to check the issue.
Also please leave some example URL as well.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
Sure, please send it to info[at]gvectors.com email address.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
We're going to check the issue. Please wait a bit. I'll update the topic asap.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
wpDiscuz has integration only with the BuddyPress, wpForo and Ultimate Member plugins. If those plugins are not installed, The URLs redirect only admins, authors and editors to their author pages (if they have any posts).
However, developers added the custom code in your active theme functions.php file. Now it works fine in your case as well.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
@asti Hey Asti, great! That seems to be working fine. Could you please highlight the custom code you have added within functions.php? Sorry, but I'm not fluent in the language and would like to move it into my Snippets plugin.
The following code was added in your active theme functions.php file:
add_filter("wpdiscuz_profile_url", function ($profile_url, $user) { if (!empty($user->ID)) { $profile_url = get_author_posts_url($user->ID); } return $profile_url; }, 999, 2);
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.