Home › Forums › Pro Support › Cards with Elementor › Reply To: Cards with Elementor
September 26, 2019 at 1:24 am
#11303
Participant
Referring to WPSP, I have the following functions
// Read more function in WPSP
add_filter( 'wpsp_ellipses', function() {
return sprintf(
'...<a href="%1$s"> <strong>-></strong></a>',
get_permalink()
);
} );
//Disable read more tag in wpsp
add_filter( 'wpsp_more_tag', '__return_empty_string' );
//Disable image title on hover in wpsp
add_filter( 'wpsp_image_title', '__return_empty_string' );
I’ve tested with Elementor and without, but it is the same thing. Would it help if you look directly into the site?