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 );

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註