Forum Replies Created
-
AuthorPosts
-
Feri
Participanti think i found the solution, but i dont know if this code is true or false but the result is ok
.wp-show-posts-tags { font-size: .8em; } .wp-show-posts-tags a { color: #999999; } .wp-show-posts-tags a:hover { color: #3a3a3a; }
the next question is: i have a lot of post with more than 10 tags. how to limit and display random tags for maximum 10 tags? i need to display any 10 tags randomly. And if possible add some … after the last tags? something like excerpt post?
Feri
Participantadd_action( 'wpsp_after_content', function( $settings ) { if ( 23793 === $settings['list_id'] ) { $tags = get_the_tag_list(' Tags: ',', '); if ( $tags ) { echo '<div class="wp-show-posts-entry-meta">' . $tags . '</div>'; } } } );
change div class to wp-show-posts-entry-meta but the result is different with entry meta date. i want to make tags link/text color/hover same as entry meta date. Font size is good except the color active link/hover.
link blog already sent via contact form.
thanks
Feri
Participantperfect! thank you so much, Tom.
Feri
ParticipantThank you so much, Tom. it works.
Feri
Participantsetting at wp show post https://prnt.sc/kyrutj
Feri
ParticipantTry giving the WP Show Posts button this class: button
try to add class button to WP Show Post – Edit List – Content – Read more button class – button.
But nothing happen. The Load more button is still black (diffrent with default button)
January 17, 2018 at 10:40 pm in reply to: How to Display Top Post / Popular Post with WPShowPost ? #3351Feri
Participanti think is a good idea to have top post menu with WPShowPost.
Feri
ParticipantThank you, Tom.
Case closed. -
AuthorPosts