Repeat PayPal Express Button on Product page
-
Hi,
I need to repeat Add to cart button inside single product template.
I have a custom paypal button displaing by another plugin, after default add to cart default button.
Inside custom button code I can see:
add_action('woocommerce_after_add_to_cart_button', array($this, 'buy_now_button'), 10);
So the button is displaing inside ‘woocommerce_template_single_add_to_cart’ action.
So tried this code:function repeat_paypal(){ echo 'Purchase now:'; do_action('woocommerce_template_single_add_to_cart'); } add_action( 'woocommerce_after_single_product_summary', 'repeat_paypal', 14);
Text Purchase now is displaing but the purchase button is not displaing.
What is wrong? There is another way to display woocommerce_template_single_add_to_cart action?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Repeat PayPal Express Button on Product page’ is closed to new replies.