I am trying to add an additional button to the side of the 'Add to Cart' button on single Product pages.
Posted by:
fonejacka1
Jan 27, 2016 at 01:00 (9 year ago)
Hi ,
I have added another button using a woo commerce hook to the single product page using 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 ‘Extra Button’;
}
What css do I need to add to your theme, to align it next to your ‘add to cart’ button and look exactly the same in terms of style.
As well as be responsive.
Or maybe the function code is wrong? I am not sure.
The goal is to have a button next to the standard 'Add to cart' button (to the right of the add to cart button), which says "Call to order" that simply needs to link through to the contact page ( and looks the same as the add to cart button styling). For now, if you could just help me get the button setup, I can change the link once the contact page is ready.
I would really appreciate your help on this, I have left my access details as well, if you could help me out . Thank you - Love the theme already!
I have added another button using a woo commerce hook to the single product page using 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 ‘Extra Button’;
}
What css do I need to add to your theme, to align it next to your ‘add to cart’ button and look exactly the same in terms of style.
As well as be responsive.
Or maybe the function code is wrong? I am not sure.
The goal is to have a button next to the standard 'Add to cart' button (to the right of the add to cart button), which says "Call to order" that simply needs to link through to the contact page ( and looks the same as the add to cart button styling). For now, if you could just help me get the button setup, I can change the link once the contact page is ready.
I would really appreciate your help on this, I have left my access details as well, if you could help me out . Thank you - Love the theme already!