• Resolved makeonlineshop

    (@makeonlineshop)


    hello,

    How can I add a second ADD TO CART button ?

    I found this but the code is not working and I do not want to install a plugin:
    https://stackoverflow.com/questions/41797697/how-to-add-a-second-add-to-cart-button-on-woocommerce

    
    add_action( 'woocommerce_single_product_summary', 'my_extra_button_on_product_page', 30 );
    
    function my_extra_button_on_product_page() {
      global $product;
      echo '<a href="URL">Add to cart</a>';
    }
    

    and

    
    add_action( 'woocommerce_single_product_summary', 'custom_button_after_product_summary', 30 );
    
    function custom_button_after_product_summary() {
      global $product;
      echo "<a href='".$product->add_to_cart_url()."'>add to cart</a>";
    }
    

    Thank you so much for your help.

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘ADD SECOND add to cart BUTTON at bottom of products pages ?’ is closed to new replies.