Hide Social Links on profile?
I want to take my community live need a way to Hide all social media and website links on the front end. I don't want to make easy for members solicit their services in my community. Also, I don't want my members clicking out of my community to view other peoples social media and websites. Does anyone know how to do this?
We are planning to make the profile fields customizable. But most probably that feature will be available next quarter.
You can do it by CSS code
Moha AlabriΒ Can you point in the right direction on how to do this? I don't know where to start.
-
Download & Install this plugin https://wordpress.org/plugins/easy-code-manager/
-
Add this code in the installed plugin as PHP code:
add_action('fluent_community/portal_head', function() {
?>div.fcom_sub_group:nth-child(4) {
display: none;
}\<?php
});
There is some bug in text editor , it seams delete some code from my text
Will find the correct code in the next link:
be noted will expire after 24 hours
Moha AlabriΒ It worked. Thank you!