Home / Admin / Disable Suggested Donation Description In Campaign (Legacy)
Duplicate Snippet

Embed Snippet on Your Site

Disable Suggested Donation Description In Campaign (Legacy)

Add this to your theme's function.php file.

Code Preview
php
<?php
add_filter( 'charitable_sanitize_suggested_amount_description', 'charitable_disable_sanitize_suggested_amount_description' );
function charitable_disable_sanitize_suggested_amount_description() {
	return false;
}

Comments

Add a Comment