• Resolved veekee

    (@veekee)


    Hey! Very close to having everything laced up on veekee.ca/newsite2014.

    If you look here on the blog, though, I would like to remove the preview post and just have the whole post showing, four posts per page. I also want to remove some of the metadata (noteably the comments counter and the tag).

    A little help, please? Love this theme, it’s really doing what I need it do! Awesome job!

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

    (@hannahritner)

    Hey, in your blog edit page you cans set the post content to “full.”

    You can use this to get rid of the metaboxes:

    .postcommentscount {
    display: none;
    }
    .postedintop {
    display: none;
    }

    Just paste it into your custom css box in theme options > advanced settings.

    Hope this helps ya!
    Hannah

    Thread Starter veekee

    (@veekee)

    Thanks Hannah! I don’t see where I can set the post content to full? What page do I click on in the dashboard? The specific post?

    Thread Starter veekee

    (@veekee)

    Actually, also, the metaboxes still leave a few typographic ticks when I paste in the CSS. Any other options for getting rid of that line?

    hannah

    (@hannahritner)

    Sorry, try adding this:

    .kad-hidepostedin {
    display: none;
    }

    In your admin area go to pages > blog (or whatever the name of your blog page is). Then under “blog list options” set Display Post Content as: Full.

    Hannah

    Thread Starter veekee

    (@veekee)

    Ok, fixed the blog reading issue, but the metaboxes persist — the “posted by” has a built in “|” that looks weird.

    I would like for the little person icon next to the “posted by” to dissapear. I also need that “|” to dissapear.

    Is CSS the way to go, or can I comment this stuff out in the PHP (if I even knew where to find it, ha)….

    So you want the by admin?

    The line is part of that string, you can’t really remove just the line without removing the by admin.

    You can do this in php but that will require a child theme, it’s a lot easy to work with css.

    .subhead {
    display:none;
    }

    Else if you really want to have the by admin then you can add this css but it will not work right if you change the name later:

    .postauthortop {
    overflow: hidden;
    width: 64px;
    display: block;
    height: 20px;
    }

    Kadence Themes

    Thread Starter veekee

    (@veekee)

    Thanks, I used

    .subhead {
    display:none;
    }

    and that removed the whole line, which is OK. Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Removing blog preview for full post’ is closed to new replies.