@imasikur22
Active 1 week, 6 days ago
-
Asiqur Rahman replied to the topic Page not found (404) when trying to access a member profile in the forum How-to & Troubleshooting 1 year, 11 months ago
Hope this helps. put these codes into your theme functions.php file.
`
add_filter( ‘bbp_get_reply_author_url’, ‘lp_member_profile_links’ );
add_filter( ‘bbp_get_topic_author_url’, ‘lp_member_profile_links’ );
add_filter( ‘bbp_get_author_url’, ‘lp_member_profile_links’ );
function lp_member_profile_links( $url ) {
if ( ! empty( $url ) )…[Read more]