@fabioangeluci
Active 1 year ago
-
b1n's profile was updated 1 year ago
-
b1n started the topic How To Add Profile Link to an Elementor Widget in the forum How-to & Troubleshooting 1 year ago
I had this problem without a easy solution, so I did one wich worked perfectly.
To add the logged in user profile link to a Elementor Widget, do this:
Add a custom shortcode to your theme functions.php// Custom Buddypress User Profile Link
[Read more]
function custom_bp_user_link( $atts ){
return bp_loggedin_user_domain();;
}
add_shortcode( 'bp_user_link',…