Viewing 7 replies - 1 through 7 (of 7 total)
  • if “.entry-meta” is the class where date is displayed then you can try to find the php code (text search) in your themes and comment out the code.

    Thread Starter BardwellMedia

    (@bardwellmedia)

    I located this in the stylesheet under the section titled “Article Styles”. (mind you this is for the Preferences Lite theme, using a child too)

    }
    .status-date {
    font-size:12px;

    How would I edit this to remove the date text and the numbered date?

    Thanks Shamratdewan

    Theme Author Styled Themes

    (@gejay)

    You would do this for the blog posts:

    .gj-article-info dd:first-child {
    	margin-left:0;
    	display:none;
    }

    However, for the status posts, it would be this:

    .status-date span {
    display:none;
    }
    Thread Starter BardwellMedia

    (@bardwellmedia)

    Thanks so much, but it’s not working. I have added both to the child style.css to no avail.

    .status-date {
    display:none;
    }

    .gj-article-info dd:first-child {
    margin-left:0;
    display:none;
    }

    This is the code I placed in there.

    The blog url is http://meetingtoolsandjewels.com/blog-2/

    Any other ideas or did I do something wrong?

    Theme Author Styled Themes

    (@gejay)

    You may want to clear your browser cache…unless you did something recently, because your date is not showing for me when I went to your blog.

    Thread Starter BardwellMedia

    (@bardwellmedia)

    Ha. I thought I did that on two browsers. I even cleared the cache using W3 Cache to no avail.

    WIth your confirmation, I cleared them again and SUCCESS!

    Thanks so much for all of your help.

    Theme Author Styled Themes

    (@gejay)

    Awesome… cheers!

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Remove Date from Blog Posts’ is closed to new replies.