How to Remove Product Image Thumbnail ...
Prevent accidental lightbox pop-ups! This WooCommerce code snippet helps website owne...

WPCodeBox
379

Add a custom “Buy Now” link below all Easy Digital Downloads purchase buttons, enabling customers to quickly add products to their cart and proceed directly to checkout, enhancing the shopping experience.
<?php
/*
* Plugin Name: Easy Digital Downloads - Purchase Button Custom Add to Cart Link
* Description: Below all EDD purchase buttons, display a link to add that product to the cart and go straight to checkout.
* Author: Easy Digital Downloads
* Author URI: https://easydigitaldownloads.com/
* Version: 1.0
*/
function custom_purchase_button_cart_link() {
?>
<a href="<?php echo edd_get_checkout_uri() . '?edd_action=add_to_cart&download_id=' . get_the_ID(); ?>">Buy Now</a>
<?php
}
add_action( 'edd_purchase_link_end', 'custom_purchase_button_cart_link' );





