• Resolved DJCombow

    (@djcombow)


    I’m running Raindrops and am just looking at how I can remove the “new” icon from appearing next to the most current posts. Here is my site link:
    https://integration.dahan.com/?cat=2

    I am using a child theme as well, so I’m hoping I can just add a line of code into the child theme.

    Thanks in advanced!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi DJCombow

    You can change style.css or PHP filter script.

    Add child-theme/functions.php

    <?php
    add_filter( 'raindrops_new_period', 'my_remove_new_text' );
    
    function my_remove_new_text( $return_value ) {
    //$return_value , It will change the number of days 3 to display the new
    	return 0;
    }
    ?>

    Another way

    Add child-theme/style.css

    #raindrops-recent-posts .raindrops-pub-new .entry-date:before,
    .raindrops-pub-new .posted-on-string:before{
        content:none;
    }

    Thank you.

    Thread Starter DJCombow

    (@djcombow)

    That worked, awesome, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to Remove the Red "New" Next to New Posts’ is closed to new replies.