Filters/Actions for Hotspot Module

Filters/Actions for Hotspot Module

Filters / Actions available for Hotspot Module are listed below.

Filter: uabb_hotspot_next_labelDescription: This filter will help to Modify 「Next」 text in the hotspot tour.

add_filter( 'uabb_hotspot_next_label', function( $next_label, $settings ) {
// Modify the string here
return $next_label;
}, 10, 2 );

Filter: uabb_hotspot_previous_labelDescription: This filter will help to Modify 「Previous」 text in the hotspot tour.

add_filter( 'uabb_hotspot_previous_label', function( $previous_label, $settings ) {
// Modify the string here
return $previous_label;
}, 10, 2 );

Filter: uabb_hotspot_endtour_labelDescription: This filter will help to Modify 「End Tour」 text in the hotspot tour.

add_filter( 'uabb_hotspot_endtour_label', function( $endtour_label, $settings ) {
// Modify the string here
return $endtour_label;
}, 10, 2 );

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注