Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Elvin

    (@ejcabquina)

    Hi there,

    You can disable them using wpsp_disable_title_link filter and wpsp_disable_image_link filter.

    Example PHP snippet:

    add_filter( 'wpsp_disable_image_link', 'tu_disable_links', 10, 2 );
    add_filter( 'wpsp_disable_title_link', 'tu_disable_links', 10, 2 );
    function tu_disable_links( $output, $settings ) {
        if ( 1234 === $settings['list_id'] ) {
            return true;
        }
    
        return $output;
    }

    Change 1234 to the WPSP list you want to disable image and title links on.

    Thread Starter T Gabriel

    (@globeboss)

    All done thank you very much.

    • This reply was modified 3 years, 1 month ago by T Gabriel.
    Plugin Support Elvin

    (@ejcabquina)

    It’s a PHP snippet. ??

    Glad you got it sorted. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘disable image and title links’ is closed to new replies.