Blog Authorship: "Posted By" Not Showing up at the top of each blog

Discussion in 'Infoway WordPress Theme' started by smbrisard, Mar 20, 2013.

Thread Status:
Not open for further replies.
  1. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .content-bar .post_meta {
    display: run-in;
    }
     
  3. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    thanks it worked perfect
     
  4. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Quick question, it's not a big deal but is there a way to simplify the display like on http://www.thegerddiet.com/ddiagnosis-gerd/ where each of the blog thumb nail remain without any information yet each blog post just say "posted by author" - is there a file I can edit to post the language I need? I don't need to show comments, and remarks or the archive folder just posted by
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content-bar .post.single .post_meta .post_date {
    display: none;
    }
    .content-bar .post.single .post_meta .post_category {
    display: none;
    }
    This will solve your issue.
     
  6. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Thanks a lot - this took care of the problem which each blog post now showing "by Stephan Brisard" - neat pick: is there any way I can add the word "posted" so it reads "Posted by Stephan Brisard"
    Also I wanted to get rid of the date, comments, reactions and author text under each of the blog thumbnails on: http://www.stephanbrisard.com/blog/ while still keep the integrity of "posted by Stephan Brisard" on each individual blog posts - Makes sense? Thanks for thw additional help you may provide.
     
  7. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Sorry I forgot but it would also be nice to get rid of the little grey "man" icon present before "By Stephan Brisard" on each blog posts
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to blog.php present in your theme directory and follow the instruction as shown in image given below

    [​IMG]


    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .content-bar .post .post_meta .posted_by{
    background:none;
    }
    This will solve your issue.
     
  9. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Thanks - I applied the changes you recommended and it removed the category, comments and date underneath the thumbnails representing each blog posts on www.stephanbrisard.com/blog - However the "Posted by" Stephan Brisard still shows up under the thumbnails. I don't want anything to show up under the thumbnails.
    I only want "posted by Stephan Brisard" at the top of each of the posts i.e. http://www.stephanbrisard.com/marketing-personalization-tips-inbound-marketer/ - Right now it still shows an icon + "By Stephan Brisard" - I need the icon removed and instead of By Stephan Brisard: "Posted by Stephan Brisard" without anything showing on each of the previous thumbnails on the main blog page. Thanks for you help resolving this team.
     
  10. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to single.php present in your theme directory and follow the instruction as shown in image given below

    [​IMG]


    Now,


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content-bar .post.single .post_meta .posted_by{
    background:none;
    }
     
  11. smbrisard

    smbrisard Member

    Joined:
    Feb 28, 2013
    Messages:
    53
    Likes Received:
    0
    Thanks it's working great - little correction to make the Posted By disappear on The Thumbs I used: (instead of background:none)

    .content-bar .post .post_meta .posted_by{
    display:none;
    }
    We can close this thread now
     
Thread Status:
Not open for further replies.

Share This Page