Post meta data is being displayed on the search results page

Hi,

I am trying to hide the post meta data from the search results page. Looking into the search.php file, it looks like there is a mfn_option to control that:

...

<?php if( mfn_opts_get( 'blog-meta' ) ): ?>
    <div class="post-meta clearfix">

...

But I can't find this option anymore in version 21.5. Could you please clarify if this is a legacy error, since the option was removed from the theme options? 

Thanks in advance.

Comments

  • Hello,
    This option is not removed from the theme options, it's still there but it works only for the main blog page, not the search page.
    If you would like to remove the data from there, please paste that CSS code below into the Theme Options > Custom CSS & JS > CSS
    body.search-results .date{
    display:none !important;
    }
    Thanks
Sign In or Register to comment.