Change Default Select Button Text
May 26, 2022
TutorialsWooFood
woocommerce food orderingwordpress food ordering plugin
add_filter("woofood_product_add_to_cart_text_ajax", "wpslash_tweak_change_default_select_button_text", 10, 1);
function wpslash_tweak_change_default_select_button_text($default)
{
return "Order Now";
}