/**
* Theme Name: GreenMart Child
* Description: This is a child theme for GreenMart
* Author: Thembay
* Author URI: https://thembay.com/
* Version: 1.0
* Template: greenmart
*/


/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */

add_filter( 'woocommerce_product_add_to_cart_text', 'custom_buy_now_text' );
add_filter( 'woocommerce_product_single_add_to_cart_text', 'custom_buy_now_text' );

function custom_buy_now_text() {
    return 'Buy Now';
}
