405

How to Add a Custom “Buy Now” Link to Easy Digital Downloads Purchase Buttons

Powered by WPCodeBox

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' );

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.