Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi
    These are very important steps to do:
    put this code to your Child Theme style.css file
    OR
    Install Simple Custom CSS plugin and put the code there.
    If you do not do css this way and put the code to themes style.css, you will loose all changes you made when you update your theme in the future.
    I’m doing this on my browser to find solution.
    It can get to some different behaviour on your site.
    It can happen that ?it is not working.
    Then we have to look further.

    .site-main footer.entry-footer {
        display: none;
    }
    
    or
    
    .site-main footer.entry-footer {
        display: none!important;
    }

    What you mean by Calendar???
    Hope I was helpfull
    Cheers
    TR

    • This reply was modified 8 years, 1 month ago by Tahoerock.
    Thread Starter woodboxmedia

    (@woodboxmedia)

    Hello TR

    The code works for me..Thanks..
    But i want to remove the tags,categories and comments only from homepage and not from the inner posts.I want tags to be visible on Inner posts.

    By calendar i mean ” date showing on the posts” on Homepage.

    Thanks
    Nancy

    Hi

    I was trying to find main site ID, but it is not there.

    That is harder to separate homepage from other pages.

    So try this:
    Same procedure as above.
    Replace the code I gave to you with this:

    .main.site-main footer.entry-footer {
        display: none;
    }
    
    or
    
    .main.site-main footer.entry-footer {
        display: none!important;
    }

    OR

    .home.main.site-main footer.entry-footer {
        display: none;
    }
    
    or
    
    .home.main.site-main footer.entry-footer {
        display: none!important;
    }

    Calendar:

    .main.site-main footer.entry-footer {
        display: none;
    }
    
    or
    
    .main.site-main footer.entry-footer {
        display: none!important;
    }

    OR

    .home.main.site-main.entry-time {
        display: none;
    }
    
    or
    
    .home.main.site-main.entry-time {
        display: none!important;
    }

    Hope this will help
    Cheers
    TR

    • This reply was modified 8 years, 1 month ago by Tahoerock.
    Thread Starter woodboxmedia

    (@woodboxmedia)

    None of them worked for my website….

    I think I did mistake.
    Sorry for that.
    I hope this will do the job.
    Delete previous and try this:

    .home .site-main footer.entry-footer {
        display: none;
    }
    
    or
    
    .home .site-main footer.entry-footer {
        display: none!important;
    }
    OR
    
    .home .site-main .entry-time {
        display: none;
    }
    
    or
    
    .home .site-main .entry-time {
        display: none!important;
    }

    OR

    body .home .blog.site-main footer.entry-footer {
        display: none;
    }
    
    or
    
    body .home. blog.site-main footer.entry-footer {
        display: none!important;
    }
    OR
    
    body.home.blog.site-main.entry-time {
        display: none;
    }
    
    or
    
    body.home.blog.site-main.entry-time {
        display: none!important;
    }

    Cheers
    TR

    • This reply was modified 8 years, 1 month ago by Tahoerock.
    • This reply was modified 8 years, 1 month ago by Tahoerock.
    • This reply was modified 8 years, 1 month ago by Tahoerock.
    Thread Starter woodboxmedia

    (@woodboxmedia)

    These codes worked for me….
    Thanks alot……You did a great help…….

    Hi woodboxmedia,
    Perfect, Im glad that we found solution witch is working for you.
    Feel free to ask in the future.
    Cheers
    TR

    hi,
    thanks @tahoerock!

    @woodboxmedia, we suggest you do not have so many categories and tags, it’s not good for SEO and users can get confused.
    Most sites have too many links to the homepage as it is. You would rather strengthen internal pages to boost the overall SEO of your site, rather than simply point more links at the homepage.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to Hide Tags on Front Page?’ is closed to new replies.