Home › Forums › Pro Support › Position date bottom of column (cards) › Reply To: Position date bottom of column (cards)
September 17, 2020 at 2:59 pm
#19513
Keymaster
Hi there,
Try adding this:
#wpsp-10324 .wpsp-content-wrap {
height: 100%;
}
#wpsp-10324 .wp-show-posts-entry-header {
height: 100%;
display: flex;
flex-direction: column;
}
For the date, update to 1.2.0-alpha.2: https://wpshowposts.com/wp-show-posts-1-2-0/
Then do this:
add_filter( 'wpsp_date_output', function( $output, $settings, $time_string ) {
if ( 123 === $settings['list_id'] ) {
return sprintf(
'<span class="wp-show-posts-posted-on wp-show-posts-meta">
%s
</span>',
$time_string
);
}
return $output;
}, 10, 3 );
Let me know 🙂