Home › Forums › Pro Support › Cards with Elementor › Reply To: Cards with Elementor
September 18, 2019 at 5:00 pm
#11187
Keymaster
Hi there,
You can tell WPSP to ignore the more tag like this:
add_filter( 'wpsp_more_tag', '__return_empty_string' );
For the image title, try this:
add_filter( 'wpsp_image_title', '__return_empty_string' );
Lastly, try this for the padding:
.wpsp-polaroid .wp-show-posts-entry-header {
margin-bottom: 0;
}
Let me know 🙂