Created
November 16, 2017 07:40
-
-
Save wpflippercode/1c8c26087ce61bd8224f2c5054cb1e5a to your computer and use it in GitHub Desktop.
Remove Visit Site Link From Ecard Email : Woocommerce Ecards Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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