• Resolved tiorocky

    (@tiorocky)


    Removing Date, Author, Category, etc. ON ALL PAGES.

    Website: maxwhip.com
    Theme: Discover
    Vrsion: 1.7.4

    I have read thru this entire support area for Discover and unable to find the following. Please help. Thanks!

    I am trying to remove all the info and options at the bottom of a post. Such as Date posted, by who posted, Category and Leave a comment.

    I addition I would also like to remove “Previous and Next” post options.

Viewing 15 replies - 1 through 15 (of 25 total)
  • Hi,
    Add the following code in your custom css file.

    .meta-data {
    display: none;
    }

    Hope this works for you.

    Thread Starter tiorocky

    (@tiorocky)

    Thanks. . . BUT. . . .

    I can not find a Custom css anywhere??????

    Note: I am working in a child theme and check the parent theme. . nothing….

    If you have a child theme, just put it in the child style.css file.

    Thread Starter tiorocky

    (@tiorocky)

    Tried that……. didn’t change a thing…. even after clearing cash. . .

    As shown here:

    [
    .meta-data {
    display: none;
    }

    .meta-data{
    line-height: 16px;
    padding: 6px 3px;
    margin-bottom: 3px;
    font-size: 11px;
    border-bottom: 1px solid #e9e9e9;
    }

    .meta-data a{
    color: #fd7800;
    }

    .meta-data a:hover{
    color: #777;
    }
    ]

    Why does your child theme style.css file have so much code in it? Are those all changes you’ve made?

    Thread Starter tiorocky

    (@tiorocky)

    No. . . I just decided to add the whole thing and make all changes there.. . . is that not a good idea?

    No it’s not a good idea – it makes it much harder to keep track of what you have changed, it’s easier to create errors – and it creates duplicate code which can slow down your site. So you really should remove everything except your changes.

    I also don’t even see the new code in there at all.

    Are these [ ] just here – those aren’t in your code are they? (not valid CSS)

    Thread Starter tiorocky

    (@tiorocky)

    Ok….. cleaned out the style with just the two items I change. . . . added your suggested code and it worked fine….. THANKS!

    Also: As I stated in the first post I also want to remove: “Previous and Next” post options.

    Any help there. . . .

    I am newer then a newbie if that’s possible.

    Excellent!! You can’t possibly be that new if you’ve gotten this child theme to this point :)!

    So see about this:

    #nav-single {
       display: none;
    }

    Thread Starter tiorocky

    (@tiorocky)

    didn’t work…… and I don’t know if it caused it or not but now I have a long Navigation drop down menu at the top…. even if I remove the original code I changed to get rid of the first line it will not go away …… not good

    That’s weird. Where did you put that code? I don’t see it in the CSS file.

    Oops, I see the problem – looks like you removed the @import line in the child theme style.css file…

    You need this back there:

    @import url("../discover/style.css");

    After this:

    Version:        1.7.4
    */

    This also has to be a different name from the parent theme:

    Theme Name:     discover

    So the whole thing should be:

    /*
    Theme Name:     discover child
    Theme URI:      http://maxwhip.com/
    Description:    Child theme for the Discover theme
    Author:         Russ Schnieber
    Author URI:     http://example.com/about/
    Template:       discover
    Version:        1.7.4
    */
    @import url("../discover/style.css");

    Thread Starter tiorocky

    (@tiorocky)

    I wish I could say that was fun…… NOT……
    That said I’m successfully back to the point I was after removing the reply section…. and haven’t broke anything in the office…..

    So. . . . still want to remove “Previous and Next” post options.

    To remove next and previous, add this

    #nav-single {
    display: none;
    }

Viewing 15 replies - 1 through 15 (of 25 total)
  • The topic ‘Removing Date, Author, Category, etc.’ is closed to new replies.