Home › Forums › Pro Support › Customize a Post › Reply To: Customize a Post
November 21, 2019 at 6:33 pm
#12008
Keymaster
Ah, you may need to use javascript to make the entire post clickable.
For example:
jQuery( document ).ready( function( $ ) {
#( '#wpsp-86 article' ).on( 'click', function( e ) {
var _this = $( this ),
url = _this.find( 'a' ).attr( 'href' );
if ( url ) {
window.location.href = url;
}
} );
} );
Then add this CSS:
#wpsp-86 article {
cursor: pointer;
}