How to Hide WooCommerce Subscription D...
This MyListing code snippet helps you hide WooCommerce subscription details for free ...

WPCodeBox
495
Add custom text before the purchase button in Easy Digital Downloads. Learn how to add custom text at checkout for your digital products.
<?php
/*
* Plugin Name: Easy Digital Downloads - Add Custom Text Before Purchase Button
* Description: Add custom text just before the "Purchase" button at checkout
* Author: Easy Digital Downloads
* Author URI: https://easydigitaldownloads.com/
* Version: 1.0
*/
function sumobi_edd_purchase_form_before_submit() { ?>
<p>Your custom text</p>
<?php }
add_action( 'edd_purchase_form_before_submit', 'sumobi_edd_purchase_form_before_submit', 1000 );





