Add the following code to your theme’s function.php file, or a functionality plugin to allow Genesis functions to appear on a Custom Post Type in the Editor.
/** Add 'page-attributes' to custom Post Type *******/
function be_products_post_type_args( $args ) {
$args['supports'][] = 'page-attributes';
return $args;
}
add_filter( 'productsposttype_args', 'be_products_post_type_args' );
Share Your Two Cents