Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Feature Request › Make followers Clickable
Tagged: Followers WCFM
- This topic has 3 replies, 2 voices, and was last updated 5 years, 5 months ago by WCFM Forum.
Viewing 3 reply threads
- AuthorPosts
- June 25, 2019 at 2:02 pm #69553cartaclaudioParticipant
Hi,
Is it possible to make the followers to a store clickable? I would like to have their profiles accessable.
Here is the link for an example http://moneymuzic.cartaclaudio.co.uk/store/carta-productions/followers
Regards,
Claudio - June 26, 2019 at 4:46 pm #69830WCFM ForumMember
Hi,
Are you using any user profile plugin?
By default WP has no such public profile page for users!
Thank You
- June 27, 2019 at 6:25 am #69962cartaclaudioParticipant
Hi,
I am using buddypress to make the profiles public.
Thank you.
- June 29, 2019 at 3:48 pm #70237WCFM ForumMember
HI,
Please keep this code added to your child theme’s functions.php –
add_filter( 'wcfm_vendor_follower', function( $wcfm_vendor_follower, $user_id ) { if( function_exists( 'bp_core_get_user_domain' ) ) { $profile_url = bp_core_get_user_domain( $user_id ); $wcfm_vendor_follower = '<a href="' . $profile_url . '" target="_blank">' . $wcfm_vendor_follower . '</a>'; } return $wcfm_vendor_follower; }, 50, 2 );
But this will work after next update.
Thank You
- AuthorPosts
Viewing 3 reply threads
- You must be logged in to reply to this topic.