Home › Forums › Pro Support › Disable title links on certain pages This topic has 1 reply, 2 voices, and was last updated 3 years ago by Tom. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts September 3, 2020 at 9:16 am #18906 BenParticipant Hi, I’d like to use wpsp_disable_image_link to stop image links but only on certain areas. Is there a way to specify which WPSP lists , or which page types the wpsp_disable_image_link is used? Many thanks Ben September 3, 2020 at 2:21 pm #18927 TomKeymaster Hi there, Absolutely, try this: add_filter( 'wpsp_disable_image_link', function( $disable, $settings ) { if ( 123 === $settings['list_id'] ) { $disable = true; } return $disable; }, 10, 2 ); Just update 123 to the ID of the list you’re targeting. Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In