Okay
  Public Ticket #159185
Removing Hearts from Blog Page
Closed

Comments

  • Jud started the conversation
    Hi - I'm looking to remove the hearts from the blog page and am not having any luck finding where I can omit them? https://www.evernote.com/shard/s32/sh/985f1804-1a2c-4078-ab13-491a0105d074/27630f4fb71f37c334091af65f67619d Thanks for your help!
  •  1,069
    ThemeNectar replied

    Hey Jud!

    Try entering this into your Custom CSS box located in your Salient Options panel: 

    .nectar-love-wrap .nectar-love {
       display: none;
    }
    article.post .post-meta .date {
       margin-bottom: 0px;
    }
    article.post .post-meta .date {
       padding-bottom: 0px;
       border-bottom: 0px!important;
    }
    
    .nectar-love-wrap {
       display: none!important;
    }

    Cheers :)

  •  11
    M replied

    This did not work for me. Any advice?

  • Jud replied

    Hi M J, 

    This didnt work for me either. I just went into the blog enteries and removed the reference to the nectar love stuff from the php. 

    in the entry.php file, remove: 

    	<div class="nectar-love-wrap">
    	<?php if( function_exists('nectar_love') ) nectar_love(); ?>
    	</div><!--/nectar-love-wrap-->	

    Not the most ideal solution but it works. 

    Jud

  •  11
    M replied

    I'm sorry, where is entry.php? Can't seem to find it through ftp. 

  •  11
    M replied

    Thanks- but I found and deleted those lines, and it is STILL showing. Cleared the cache and tried from multiple browsers. Any ideas?

  • Jud replied

    Send me a link and I can try to take a look

  •  11
    M replied

    Do you need a login?

  • Jud replied

    I doubt it, I may be able to just take a look at everything through the front end and see what I can see. 

    You can reach me at [email protected]

  •  1,069
    ThemeNectar replied

    Hey Jud, thanks for helping out M J! 

    If you two can be so kind as to share URLs going forward it would make troubleshooting these kind of issues a lot easier! If either of you still would like a revised css snippet please just share a URL and I'll gladly provide it :)

    Cheers

  • Jmikhail replied

    The code Nectar gave us works, but it doesn't work inside the blog post as you can still see it on the right side of the blog title.

    How do we remove the heart from the right side of the blog titles as well?

  •  1,069
    ThemeNectar replied

    Hey Jmikhail!

    Add this into the Custom CSS box located in your Salient Options panel as well:

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

    Cheers

  • Jmikhail replied

    Hey Nectar, it worked thanks!

  •  1,069
    ThemeNectar replied

    You're welcome :)