Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Bangert-

    I’m not familiar with your theme, but I might still be able to help you still.

    If you want to remove the commenting altogether, the simplest thing would probably be to remove the call to the comment template from the page template. But when you update your theme, it might put the comment template back, so that might not be the best choice.

    You can also try setting display:none to the elements in question in your stylesheet. For instance, when I view the source code of your page, I see both of the elements you mentioned are within a div with an id of “meta”. So you could add this to your stylesheet:

    #meta { display:none; }

    #meta is a pretty generic name for a div, so that makes me think it is used on other pages, too, so if you set the display to none, it will not display on any page. If you only want to turn it off on https://www.carping4heroes.co.uk/?p=306, then you can specify the page like this:

    .postid-306 #meta { display:none; }

    Be sure and check your site carefully for other divs that have been inadvertently turned off, since meta is a common div id.

    Cheers,
    Kim

    Thread Starter bangert2011

    (@bangert2011)

    Sorry I’ve not replied website calls!!! You my friend though, are a God lol, inserted #meta { display:none; } and its vanished. I wanted it for all pages so your advice worked. Thanks again.

    So glad it worked!

    ??
    Kim

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Want to Remove 2 Things from Post Page’ is closed to new replies.