• Resolved nordmtl

    (@nordmtl)


    Hello,

    I need custom authors list view (output).

    1 column, 1 author per line

    Avatar ..(space).. Name ..(space).. (Count – just a number) — all in one line

    sorted by post count.

    Example:

    Img1 John Doe (16)
    Img2 Sam Gunn (11)
    Img3 Nancy Drew (5)

    Is it possible?
    Could you help me with it?

    • This topic was modified 4 years ago by nordmtl.
    • This topic was modified 4 years ago by nordmtl.
    • This topic was modified 4 years ago by nordmtl.
    • This topic was modified 4 years ago by nordmtl.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi @nordmtl

    This is the shortcode:

    [authors_list columns="1" avatar_size="100" show_bio="no" show_link="no" count_text=""]

    And this is a bit of CSS to put in WP admin > Appearance > Customize > Additional CSS:

    .authors-list-item {
    	display: flex !important;
    	width: 100%;
    	align-items: center;
    }
    
    .authors-list-item-main {
    	display: flex;
    	align-items: center;
    	margin-left: 20px;
    }
    
    .authors-list-item-title {
    	margin-right: 20px;
    }
    Thread Starter nordmtl

    (@nordmtl)

    Thank you!

    Plugin Author WPKube

    (@wpkube)

    You’re welcome.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom view’ is closed to new replies.