We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Polaroid images on the left Reply To: Polaroid images on the left

#12985
Tom
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.