Type
Filter
Arguments
(string) $text
Description
Change the default HTML button text ‘License Manage’
Example of usage
Change the default text to something else
add_filter('woo_sl/html/button/license_manage', 'custom_html_button_license_manage'); function custom_html_button_license_manage( $text ) { $text = __('Keys Handling', 'software-license'); return $text; }