Okay
  Public Ticket #145855
Removing Heart from Portfolio Social Links
Closed

Comments

  •  2
    Steve started the conversation
    On Portfolio pages, when social links are activated, a "heart" clickable link is active by default (next to Facebook and twitter) and I can't turn it off. And to be honest, I have no idea what the heck it does!
  •  1,071
    ThemeNectar replied

    Hey Steve! You can remove it with this in your custom css box:

    #project-meta .n-shortcode {
      display: none!important; 
    }

    It's just used for an internal "love" count to get an idea from your users what projects they enjoy the most - think of it as your own "like" system from facebook :)

    Cheers

  •  2
    Steve replied

    I'd like to remove them from the blog too - how can I do this?

  •  8,839
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :
    .nectar-love-wrap {
        display: none !important;
    }
    
    Thanks


    ThemeNectar Support Team