General, WooCommerceChange “Add to cart” text add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) { if ( 'Add to cart' == $text ) { $text = __( 'Buy Now', 'woocommerce' ); } return $text; } ); Previous Post Disable automatically deleting trashed posts Next Post Add custom CSS in the Admin dashboard