Skip to main content

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?

Shahjahan Jewel

We are planning to make the profile fields customizable. But most probably that feature will be available next quarter.

Alabri

You can do it by CSS code

Robert Lee

Moha AlabriΒ Can you point in the right direction on how to do this? I don't know where to start.

Alabri

Robert LeeΒ 

  1. Download & Install this plugin https://wordpress.org/plugins/easy-code-manager/

  2. 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
    });

Alabri

There is some bug in text editor , it seams delete some code from my text

Alabri

Will find the correct code in the next link:

https://codeshare.io/mPxW3k

be noted will expire after 24 hours

Robert Lee

Moha AlabriΒ It worked. Thank you!