Okay
  Public Ticket #1823933
Remove Heart
Closed

Comments

  •  21
    Simon started the conversation

    Hi

    Is there some css that will turn off the hearts across the board - I think this would be a really good theme setting toggle as well as they are not relevant for most websites.

    Applies to portfolio in this case but they crop up all over the blog as well.

    Many thanks, Si

  •  75
    Scott replied

    Hey there,

    Thanks for reaching in,

    Please try this CSS here Salient > General Settings > CSS/Script Related > Custom CSS Code

    .nectar-love i {
        display:none!important;
    }
    

    Regards

    Themenectar Support Team

  •  21
    Simon replied

    Thanks Scott.

    That has got rid of the heart but not the number next to it.

    Thanks, Si

  •  8,996
    Tahir replied

    Hey Again,

    -For the blog use these options: http://prntscr.com/lvzwz4 .

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .portfolio-items .nectar-love-wrap {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  75
    Scott replied

    Hey there,

    Thanks for reaching in,

    Please delete the previous CSS snippet and use this one instead:

    .nectar-love i, .nectar-love span {
        display:none!important;
    }
    

    Hope this helps,

    Regards

    Themenectar Support Team

  •  21
    Simon replied

    Thanks Scott

    That has got rid of most of it but it hasn't removed the lozenge on the portfolio entry page.

    Screenshot at:

    http://prntscr.com/lvzzoj

    URL:

    https://simongreenland.com/portfolio/dr-face/

    Thanks, Si


  •  75
    Scott replied

    Hey Simon,

    Please try this CSS instead

    .nectar-love i, .nectar-love span, span.n-shortcode {
        display:none!important;
    }
    

    Regards

    Themenectar Support Team

  •  21
    Simon replied

    That has removed it but it's left a big space now - can we hide that whole area?

    https://simongreenland.com/portfolio/seruba/

    Screenshot at:

    http://prntscr.com/lw04la

    -----

    Also, the hearts are still appearing on the related options 

    Screenshot at:
    http://prntscr.com/lw09g8

    Thanks, Si

  •  75
    Scott replied

    Hey Simon,

    Here you go,

    .nectar-love i, .nectar-love span, span.n-shortcode, ul.project-sharing {
        display:none!important;
    }
    

    Regards

    Themenectar Support Team