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 Customize a Post Reply To: Customize a Post

#12008
Tom
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;
}