Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ben Meredith

    (@benmeredithgmailcom)

    Hey there!

    My plugin only removes the date, not the “posted on” or any other meta.

    Also, this plugin is designed to remove the date from only older posts while leaving it on the newer ones.

    Do you currently have it installed and active? (have you gone in and selected selected the number of days to remove the date at https://wnov860.com/thevoicewordpress/wp-admin/options-general.php?page=wp_old_post_date_remover to be fewer than 10 days–the number of days since the post you linked to went live?)

    The code you want to put in a CSS file somewhere (likely the style.css file in the theme) to remove ALL post meta (the posted on as well as the date) is

    .post-meta {
      display: none;
    }

    But that’s a really clunky way to do it that I wouldn’t recommend. The best bet is to modify the theme or child theme files to not deliver the post-meta at all. But if you’re not comfortable tweaking code, hiding it with CSS may be an option.

    But if they are paying you for a website, it pays to learn code. Everybody wins!

    Plugin Author Ben Meredith

    (@benmeredithgmailcom)

    Marking this as resolved. Let me know if I can be of further assistance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Date is not removed with your plugin’ is closed to new replies.