• Resolved Paul

    (@rhododendron)


    I want to disable the Bread crumb which shows before each posts.
    Please tell me the process. Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • There are no breadcrumbs in this theme as far as I know. Are you running some plugin perhaps?

    Thread Starter Paul

    (@rhododendron)

    Sorry, I meant the Categories.

    I do not wanna show the Post categories before the post.

    want to disabe it from the child theme. So that the settings dont go off when the theme updates.

    Add /inc/page-title.php to the child theme and remove:

    <ul class="meta-single group">
    			<li class="category"><?php the_category(' <span>/</span> '); ?></li>
    			<?php if ( comments_open() && ( ot_get_option( 'comment-count' ) != 'off' ) ): ?>
    			<li class="comments"><a href="<?php comments_link(); ?>"><i class="fa fa-comments-o"></i><?php comments_number( '0', '1', '%' ); ?></a></li>
    			<?php endif; ?>
    		</ul>

    Thread Starter Paul

    (@rhododendron)

    I deleted the following code. But its still showing the categories for the post.

    link

    I thought you meant for the single post page. To remove it from there on the index, edit content.php / content-feautured.php and remove:

    <p class="post-category"><?php the_category(' / '); ?></p>

    Thread Starter Paul

    (@rhododendron)

    Ah okay !

    Thanks ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Disabling Breadcrumbs before each Post’ is closed to new replies.