Viewing 13 replies - 1 through 13 (of 13 total)
  • This is a really good question. Does anyone have an answer?

    in design –> theme options –> custom css
    tpye following to remove all 3:

    #main #content ul.post-by {
    display: none;
    }

    to remove only the Comments-Hint, type in the custom css:

    #main #content ul.post-by li.last {
    	display: none;
    }

    to remove only the author type in the custom css:

    #main #content ul.post-by li a {
    	display: none;
    }

    I have a little more complicated problem… I want to hide only the comments section. I deleted the line 30 from the content.php (<?php comments_popup_link( __( ‘No Comments’, ‘simplecatch’ ), __( ’1 Comment’, ‘simplecatch’ ), __( ‘% Comments’, ‘simplecatch’ ) ); ?>). So in that case the comments section is not presented at the category list but it continues to be presented at the category item (post). I cannot find any other popup_link except from the image.php.

    Please advice
    Ragards,

    I have a little more complicated problem… I want to hide only the comments section. I deleted the line 30 from the content.php (<?php comments_popup_link( __( ‘No Comments’, ‘simplecatch’ ), __( ’1 Comment’, ‘simplecatch’ ), __( ‘% Comments’, ‘simplecatch’ ) ); ?>). So in that case the comments section is not presented at the category list but it continues to be presented at the category item (post). I cannot find any other popup_link except from the image.php.

    Please advice
    Ragards,

    I think you’re looking for line #833 in the simplecatch_functions.php

    Edit: accidentally clicked twice.

    Exactly! Thank you!

    I want to remove the AUTHOR and the COMMENTS that are shown in each post. I add:
    #main #content ul.post-by li.last {
    display: none;
    }
    #main #content ul.post-by li a {
    display: none;
    }

    but if I open the post can still be seen.

    thanks

    Luca

    Luca, per the forum guidelines, please start your own thread and include a link to your site.

    I wrote here because my problem was related to this thema.
    Maybe I solved by removing line # 833 in the simplecatch_functions.php.

    Thanks

    The author, date and comments are related to the following files:
    content.php (lines 28-30)
    /functions/simplecatch_functions.php (lines 830-833)
    You can comment / delete the line you want in order to present or not!

    thanks a lot!

    Thread Starter ajeykhan

    (@ajeykhan)

    thank you inthehelp

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘[Theme: Simple Catch] How to remove Author Date Comments from the top of every post’ is closed to new replies.