Archived topic
Woocommerce single product
1 reply · Started by Max on February 8, 2022
I want an extra button left from the green button how can i fix?
This one works, but i want a button with background color.
You guys dont have a option to fix single page in woocommerce yet with generate blocks yet
add_action( 'woocommerce_single_product_summary', 'my_extra_button_on_product_page', 30 );
function my_extra_button_on_product_page() {
global $product;
echo 'Extra Button';
}
Hi Max,
You can use a block element to add the button instead of using the PHP, choose woocommerce_single_product_summary hook.
Set the priority to 9
Once it's done, we can see if custom CSS is needed.