Filter Currency Label Text

Filters the entire currency label text:

$5.00 / week (filters the entire text)

function customize_wpvs_currency_label($currency_label) {
    /*
    * your customization code here
    */
    return $currency_label;
}
add_filter('wpvs_filter_currency_label', 'customize_wpvs_currency_label');