How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

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