Dear Hassan,
Did you add the function below on your functions.php file?
add_filter('gettext', 'remove_widget_links', 100, 3); function remove_widget_links($translated, $text, $domain) { if ($text == 'Edit View' || $text == 'Edit') return ''; return $translated; }