• Hello,
    i would like to make visible in the post only category and tag so i need to hide author, date and comment. How to do it?

    Another question is how to insert in the feature post also two line of text.

    Thank you so much

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Richie KS

    (@rkcorp)

    add this to customize->general->custom css

    .post-author,.post-date,.post-comment { display:none !important; }

    Another question is how to insert in the feature post also two line of text.

    could you be more specific, no idea what you mean on this…

    Thread Starter alederodesign

    (@alederodesign)

    Now i see only the category below the title post. It is also possible to show the tag’s post?

    As for the second question i mean in the right sidebar you can show the custom post type with thumb, and title. it is also possible to show few line of text?

    Theme Author Richie KS

    (@rkcorp)

    open lib/templates/post-meta.php
    try add this before <?php if ( comments_open() ) { ?>

    <?php if( has_tag() ) { ?><span class="post-tags"><i class="fa fa-tags"></i><?php the_tags('', ', '); ?></span><?php } ?>

    opne lib/functions/widget-functions.php and add this in line 404 before closing <div class=”/feat-post-meta/”>

    <?php echo dez_get_custom_the_excerpt(15); ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Post customization’ is closed to new replies.