• Hello, please someone help me, HELP ME! for the last couple of hours i have been trying to remove the time, date and post name from my blog and i have tried everything everyone said. I am no coder and new at this but have learned enough to make changes. I really appreciate the help. My site https://havea-fit.com/ so that can help you look at the code i am using the twenty twelve theme 2014

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi nnayr3,

    First make a child theme for your theme.

    https://codex.www.ads-software.com/Child_Themes

    Then install firebug or some developer tools.

    Then find html elements and write css code to hide them in your child theme.

    If you want to hide time, date, category and tag in footer in index pages, use below code in child theme’s stylesheet.

    footer.entry-meta {
    display: none;
    }
    Thread Starter nnayr3

    (@nnayr3)

    Hi Sarathlal,

    I will try to figure out how to do all that. I do have firebug, but I need to find out how to do a child theme. i did download a plug in, but was told i should add another one so Google can see dates i post.

    Now the problem is showing This entry was posted in Home on .

    Hi,

    Makeing Chid theme for WordPress is too simple. I think you can understand the details from above mentioned WP codex page. Never use plugins for such simple matters.

    Now You want to make a child theme for Default WP theme, Twenty Twelve.

    1) Create a new folder inside wp-content/themes & name it as twentytwelve-child (You can choose any name for this folder)
    2) Make a css file with name style.css inside this new folder
    3) Add below code in this file at the begining.

    /*
    Theme Name: Twenty Twelve child
    Description: A Child Theme of Twenty Twelve
    Author: Your Name
    Template: twentytwelve
    Version: 1.0.0
    */
    @import url(../twentytwelve/style.css);

    4) Save file & reload WordPress admin page for themes.
    5) First activate parent theme if it was not the current theme
    5) Then Activate child theme.
    6) Add our new styles below the theme code we added in step 3 in style.css file

    If you want to apply style for different pages, WP default twenty twelve theme offer different body class (Or parent div with different classes) for each pages. So apply styles with these classes.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove time stamp, date and post name’ is closed to new replies.