Home / Admin / Add Custom Text Before Purchase Button
Duplicate Snippet

Embed Snippet on Your Site

Add Custom Text Before Purchase Button

Add custom text just before the "Purchase" button at checkout

Code Preview
php
<?php
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 );

Comments

Add a Comment