Home › Forums › Pro Support › Polaroid images on the left › Reply To: Polaroid images on the left
January 28, 2020 at 6:29 pm
#12985
Keymaster
Can you show me a screenshot of the problem cards? I’m not seeing any issues on desktop, tablet or mobile.
As for the excerpt, try targeting the specific list:
add_action( 'wpsp_before_content', function( $settings ) {
$meta = get_post_meta( get_the_ID(), '_your_custom_meta_key', true );
if ( isset( $meta ) && '' !== $meta && 123 == $settings['list_id'] ) {
echo $meta;
}
} );
Just replace 123
with the ID of your list.