• Resolved crazydrake

    (@crazydrake)


    Hi – I’d like to display the authors like you have in the example image next to the title on the plugin page. Instead of View posts – I’d like link to the most recent post and to display the title of it.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi @crazydrake

    I think this is the shortcode you’re looking for:

    [authors_list style="2" columns="2" amount="4" show_bio="no" show_count="no" show_link="no" after_title="{alf:posts type=plain amount=1}"]

    You might need to change the color of the link to the post, you can do that by adding this in WP admin > Appearance > Customize > Additional CSS:

    .authors-list-posts-item a {
        color: #fff;
    }
    Thread Starter crazydrake

    (@crazydrake)

    Perfect – Thanks so much!

    Plugin Author WPKube

    (@wpkube)

    You’re welcome

    Thread Starter crazydrake

    (@crazydrake)

    Thanks again for your help on this. Is there a configuration to get the authors to diplsay like this???
    https://www.drakosweb.com/sportsradiopd/wp-content/uploads/2021/04/author_display.png

    Plugin Author WPKube

    (@wpkube)

    You’re welcome.

    Shortcode:

    [authors_list style="1" columns="3" avatar_size="150" show_count="no" show_link="no"]

    CSS (if you want those rounded images with border, center align and the border between name and bio):

    .authors-list-item {
    	text-align: center;
    }
    .authors-list-item-title {
    	border-bottom: 2px solid #ddd;
    }
    .authors-list-item-thumbnail img {
    	border-radius: 50%;
    	margin-left: auto;
    	margin-right: auto;
    	border: 4px solid #ddd !important;
    }
    Thread Starter crazydrake

    (@crazydrake)

    I just wanted to say thank you. This is perfect. Thank you so much for your timely responses and GREAT plugin!

    Plugin Author WPKube

    (@wpkube)

    You’re welcome, happy to hear that ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Display Like Example Image?’ is closed to new replies.