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


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


add_filter( 'woocommerce_product_add_to_cart_text', 'custom_woocommerce_order_now_button_text', 10, 2 );
function custom_woocommerce_order_now_button_text( $text, $product ) {
    if ( $product->is_type( 'variable' ) ) {
        $text = __( 'Order Now', 'woocommerce' );
    }
    return $text;
}

