Hi Karen,
Thanks for reaching out to us. Please try the below code at your child theme’s functions.php or use it as a snippet using the Code Snippets plugin-
add_filter('pvtfw_row_cart_btn_oos', function( $text, $product_id, $cart_url, $product_url, $variant_id){
$new_text = __('Currently licensed', 'product-variant-table-for-woocommerce');
$btn = sprintf(
'<button class="pvtfw_variant_table_cart_btn button alt" disabled>
<span class="pvtfw-btn-text">%s</span>
<div class="spinner-wrap"><span class="flaticon-spinner-of-dots"></span></div>
</button>',
$new_text
);
return $btn;
}, 10, 5);
Please let us know if you wanted something like this or not.
Hope to hear from you soon!