Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created November 16, 2017 07:40
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 wpflippercode/1c8c26087ce61bd8224f2c5054cb1e5a to your computer and use it in GitHub Desktop.
Save wpflippercode/1c8c26087ce61bd8224f2c5054cb1e5a to your computer and use it in GitHub Desktop.
Remove Visit Site Link From Ecard Email : Woocommerce Ecards Pro
add_filter( 'ecp_display_sitelink', 'do_not_display_site_link' );
function do_not_display_site_link($display){
//Return boolean value true/false to display/hide link
$display = false;
return $display;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment