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