• Hi All,

    My domain is http://davaopropertyforsale.com.. On the right side, you’ll see a drop down list. When I select one of my categories, there’s a line says “You are browsing the archive for….” I want to delete that line.

    Also, I want to delete the date, category, and comment off..How would I do it.

    Please help! Thanks…

Viewing 4 replies - 1 through 4 (of 4 total)
  • look into archive.php (or category.php, if it exists) of your theme, and see if you can find the line with ‘You are browsing the archive for’ – some code probably starting with <h3 class="pagetitle"> ... – then remove the line (including the </h3> at the end)

    I want to delete the date, category, and comment off..

    same template; look for a line starting with <p class="date"> ... with some php code with possibly the_date(); and a line with <p class="postmetadata"> ... <span class="comments"> ... with some php code – and remove them.

    if you have problems locating the correct codes, please paste the full code of archive.php or category.php into a http://pastebin.com/ and post the link to it here.

    Thread Starter davaopro

    (@davaopro)

    Hi,

    Thanks so much! It works perfectly! 🙂

    Thread Starter davaopro

    (@davaopro)

    Hi alchymyth,

    The one above for Archive is perfectly fine…But one more issue…How do I remove “Comments are Closed” in post section?

    Here’s the link:
    http://davaopropertyforsale.com/?p=89

    I am using Custom Community theme..I find the same issue in here however it didn’t work for me as the other guy is using a different theme…

    Thanks..

    add something to style.css, like:

    .comments-closed { display: none; }

    (where you add it does not really matter)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove!’ is closed to new replies.