woo_sl/html/button/license_manage

Share on FacebookShare on Google+Tweet about this on TwitterShare on LinkedInPrint this page

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

 

 


By woocommerce-sl, posted on April 24, 2025

Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments