Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greenhornet79/c66bb05ad2139c45ec58441283d5e255 to your computer and use it in GitHub Desktop.
Save greenhornet79/c66bb05ad2139c45ec58441283d5e255 to your computer and use it in GitHub Desktop.
<?php
add_filter('leaky_paywall_cancel_subscription_description', 'endo_change_cancel_description' );
function endo_change_cancel_description( $description ) {
$new_description = '<p>Please click the first link below to cancel your subscription.</p>';
return $new_description;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment