add_action('admin_head', 'gathering_design_wp_admin_css');
function gathering_design_wp_admin_css() {
global $current_screen;
if ($current_screen->taxonomy === 'store-category') {
echo '<style>.form-field.term-parent-wrap { display: none; }</style>';
}
}