Thanks!
You also need to add this into functions.php located at the theme folder in order the drop-down menu to appear for product post type:
/**
* Hooks the WP cpt_post_types filter
*
* @param array $post_types An array of post type names that the templates be used by
* @return array The array of post type names that the templates be used by
**/
function my_cpt_post_types( $post_types ) {
$post_types[] = ‘grid_products’;
return $post_types;
}
add_filter( ‘cpt_post_types’, ‘my_cpt_post_types’ );