Okay
  Public Ticket #1414536
Remove like hearts
Closed

Comments

  • frankruck88 started the conversation

    Dear Sir/Madam,

    First of all: many love for your great theme. I've never seen such a complete and user friendly theme. 

    My question: I want to remove the like 'hearts' from the blog section, both in the overview page and the detail page (the blog post itself). Could you please help me with this? And is it also possible to hide the author name and the number of comments?

    Kind regards,

    Frank

  •  3,034
    Andrew replied

    Hi Frank,

    To remove the hearts from blog posts page and main blog post page use this CSS:

    .ascend .post .nectar-love-wrap{
        display:none;
    }

    To remove author and comment count use this CSS:

    #single-below-header span.meta-author{
        display:none !important;  
    }
    .single #single-below-header span{
        border-left:none;
    }
    .single #single-below-header span.meta-comment-count{
        display:none !important;
    }

    Add the CSS to salient \ general settings - css script related - custom css code.
    Hope this helps.