Removes WordPress Enfold theme backlink without having to modify the footer.php file.
//////////////////////////////
// REMOVE ENFOLD POWERED BY //
//////////////////////////////
function remove_backlink($link) {
return '';
}
add_filter('kriesi_backlink', 'remove_backlink', 10, 1);