Filter Price Amount Text

Filters the price amount text:

$5.00 / week (filters the 5.00)

function customize_wpvs_price_amount_text($price_amount) {
    /*
    * your customization code here
    */
    return $price_amount;
}
add_filter('wpvs_filter_currency_label_price_amount', 'customize_wpvs_price_amount_text');