0
In the Woocommerce store I have the Add Cart button, I would like to put one beside Buy now that forwards the user direct at checkout, I used the following code:
add_action( 'woocommerce_single_product_summary', 'my_extra_button_on_product_page', 30 );
function my_extra_button_on_product_page() {
global $product;
echo '<button type="submit" class="single_add_to_cart_button button alt">Compre agora</button>';
}
But what’s your problem? Be more specific about how we can help you...
– Andrey
In the store template I only have the Add Cart button,I would like to add another button next to it that directs the user directly to the checkout, like a Buy Now
– Tech UNO MUNDO