To change WooCommerce add to cart button text without using a plugin, then add the following function to your theme's functions.php files.
NOTE: Remember to edit and replace the BUY NOW text with your custom text.
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_cart_button_text_blogies' );
function woocommerce_custom_cart_button_text_blogies() {
return __( 'BUY NOW', 'woocommerce' );
}