Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #87427
    hhurst
    Participant

    I would like to have some blog posts be posted with no date at the top.
    Is this possible in catch responsive? thanks

    #87434
    Mahesh
    Keymaster

    @holleyhrocketmail-com: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add any of the following CSS as required:
    For Blog List Page
    1. For disabling posted date from all posts:

    .blog #content .post .entry-meta {
        display: none;
    }

    2. For disabling posted date from selected posts(Hides post date from post titled Lucid Dreaming):

    .blog #content .post.post-2925 .entry-meta {
        display: none;
    }

    For Blog Single Page
    1. For disabling posted date from all single page posts (Entire site):

    .single #content .post .posted-on {
        display: none;
    }

    2. For disabling posted date from selected single page posts(Hides post date from post titled Lucid Dreaming):

    .single #content .post.post-2925 .posted-on {
        display: none;
    }

    Let me know if any trouble.

    Regards,
    Mahesh

    #88903
    hhurst
    Participant

    Thanks. Update: I just now got to try this. I cut and paste exactly as you have if for the example of ommitting all dates and nothing changed.

    #88907
    Mahesh
    Keymaster

    @hollyehrocketmail-com: I checked your site and did not see any CSS for removing the date. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS.

    .entry-meta .posted-on {
        display: none;
    }

    Note: This will hide date from all post in your entire site.

    Regards,
    Mahesh

    #88908
    hhurst
    Participant

    I put this into the place you said exactly as you wrote it but the dates are still there.
    I took it out because I don’t leave code in that is not working.
    Is there anything else to try? thanks

    #88910
    Mahesh
    Keymaster

    @hollyehrocketmail-com: The above code should work fine. It seems you have some error in you Custom CSS code. Try putting the code at the beginning of the Custom CSS box and let me know if this fixes the issue.
    I don’t know why you’ve put the following line in Custom CSS box:
    [swpm_payment_button id=75 button_text=”Join Now”]
    And the following are some error code:

    {font-italic;} 
    body, button, input, select, textarea {
        font-family: nova+mono;
    
    

    Please remove {font-italic;} and the code after it is missing a closing brace }. It should be like the following:

    body, button, input, select, textarea {
        font-family: nova+mono;
    }

    Let me know if any problem.

    Regards,
    Mahesh

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘have no date on some blog posts’ is closed to new replies.