Site logo

Archived topic

Cannot show Toolset slider as Hook

1 reply · Started by Kelvin on February 19, 2023

Viewing posts 1–2 of 2

Hi Kelvin,

Can you try adding this PHP snippet to test?:

add_filter( 'generate_element_display', function( $display, $element_id ) {
    if ( 6702 === $element_id ) {
        $display = true;
    }

    return $display;
}, 10, 2 );

Let us know how it goes.

This archived topic is closed to new replies.