• Resolved Chester

    (@chester-hepburn)


    Hi, i am using twenty thirteen child theme. Do anyone have any idea about how to turn off tags and turn on author name in twenty thirteen. Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • This will hide the tag links.

    span.tags-links {
    	position: absolute !important;
    	clip: rect(1px 1px 1px 1px); /* IE7 */
    	clip: rect(1px, 1px, 1px, 1px);
    }

    The right way to get the author link to show is making your site become multi-author site by creating another author and publish at least 1 post.

    or use this bit of CSS

    .single-author .entry-meta .author { display: inline; }

    but this won’t get you the author info box on single page, so it’s better to create that dummy author.

    Thread Starter Chester

    (@chester-hepburn)

    WOW! it works. thank you so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to turn off tags and turn on author name in twenty thirteen.’ is closed to new replies.