woo_sl/html/manage_keys

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

Type
Filter

Arguments
(string) $text

Description
Change the default HTML text ‘You can manage your keys from My Account’

Example of usage

Change the default text to something else

    add_filter('woo_sl/html/manage_keys', 'custom_html_manage_keys');
    function custom_html_manage_keys( $text )
        {
            
            $text = __('See your account for more keys.', 'software-license');
               
            return $text;   
        }

By woocommerce-sl, posted on September 26, 2018

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments