Hi,
Inside the file located in “themes\dante\swift-framework\custom-post-types\gallery-type.php”
Find the code below
$args = array(
'labels' => $labels,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'menu_icon'=> 'dashicons-format-gallery',
'hierarchical' => false,
'rewrite' => false,
'supports' => array('title', 'thumbnail'),
'has_archive' => true,
'taxonomies' => array('gallery-category')
);
and replace by this one
$args = array(
'labels' => $labels,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'menu_icon'=> 'dashicons-format-gallery',
'hierarchical' => false,
'rewrite' => false,
'supports' => array('title', 'thumbnail'),
'has_archive' => true,
'taxonomies' => array('gallery-category'),
'exclude_from_search' => true
);
Let us know if it worked.
-Rui