How to Hide Content from Logged Out Us...
Assign the ‘hideifloggedout’ CSS class to any element you wish to hide fr...

WPCodeBox
461
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 );





