Viewing 11 replies - 1 through 11 (of 11 total)
  • That is not theme-specific, so you should be able to take care of it at Dashboard > Settings > Discussion.

    Theme Author Tomas Mackevicius

    (@tomasm)

    Do you have latest version? Actually it was removed in previous version – so comment number will be showed next to post title only if comment is present.

    Otherwise delete this line in content.php:

    <span class="meta-separator">&bull;</span> <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'tinyforge' ) . '</span>', __( '1 Comment', 'tinyforge' ), __( '% Comments', 'tinyforge' ) ); ?>

    Thread Starter Brandon10

    (@brandon10)

    Going to give it a bash later – thanks both

    Thread Starter Brandon10

    (@brandon10)

    Hi both

    All sorted 🙂
    Thank you so much

    Theme Author Tomas Mackevicius

    (@tomasm)

    When you’re finished, please share your work results 😉

    Hi, I would like to remove date and author of the post article. Have I to cancel the relative functions I suppose. Isn’t it? Is it something like that?:
    <?php the_time(‘F jS, Y’) ?> e <!– by <?php the_author() ?> and the same for category.
    I don’t find where the codes to cancel are positioned. Is there another option? Thank you very much.

    Theme Author Tomas Mackevicius

    (@tomasm)

    Just place this into your custom CSS plugin:

    article header .entry-meta {
        display: none;
    }

    Now it’s time for you to show off your work 🙂

    Theme Author Tomas Mackevicius

    (@tomasm)

    It works for me when I put it at the end of style.css of the child theme, you can also try this:

    article header .entry-meta {
        display: none!important;
    }

    Otherwise I would have to see real website to say anything, it might be a conflict whit a plugin or something. Inspect that element with Firefox inspector to see what styles are affecting it.

    I puit it at the and of CSS custom like this but unfortunately, it doesn’t work. Thanks

    ……….

    }
    ul.list-icon-hand-right li:before {
    color: #8DC919;
    padding-right: 10px;
    padding-right: 0.714285714rem;
    content: “\e08c”; /* icon-hand-right */
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    font: normal 20px/1 ‘Elusive-Icons’;
    vertical-align: bottom;
    }

    article header .entry-meta {
    display: none!important;
    }

    /* Remaining css for webfont icons is plugged-in via functions.php */

    /* 14.3 Other styles */

    Theme Author Tomas Mackevicius

    (@tomasm)

    I would have to see actual website to test it.

    My website is nonmarketing.it. Let mue knowhow can we manage this. Thanks.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Remove 'Leave a Reply'’ is closed to new replies.