Plugin Support
Hannah S.L.
(@fernashes)
Automattic Happiness Engineer
This is a fairly complex development topic. I’m going to leave it open for a bit to see if anyone is able to chime in to help you out.
These are arguments used to create CPT mentioned above
$labels = array(
‘name’ => ‘Franchisee coaches’,
‘singular_name’ => ‘Franchisee coache’,
‘menu_name’ => ‘Franchisee coaches’,
‘name_admin_bar’ => ‘Franchisee coache’,
‘add_new’ => ‘Add New’,
‘add_new_item’ => ‘Add New Franchisee coache’,
‘new_item’ => ‘New Franchisee coache’,
‘edit_item’ => ‘Edit Franchisee coache’,
‘view_item’ => ‘View Franchisee coache’,
‘all_items’ => ‘All Franchisee coaches’,
‘search_items’ => ‘Search Franchisee coaches’,
‘parent_item_colon’ => ‘Parent Franchisee coaches:’,
‘not_found’ => ‘No Franchisee coaches found.’,
‘not_found_in_trash’ => ‘No Franchisee coaches found in Trash.’,
);
$args = array(
‘labels’ => $labels,
‘public’ => true,
‘publicly_queryable’ => true,
‘show_ui’ => true,
‘show_in_menu’ => true,
‘menu_icon’ => ‘dashicons-id-alt’,
‘query_var’ => true,
‘rewrite’ => array( ‘slug’ => ‘franchisee-coaches’ ),
‘capability_type’ => array(‘franchisee_coach’, ‘franchisee_coaches’),
‘map_meta_cap’ => true,
‘has_archive’ => true,
‘hierarchical’ => false,
‘menu_position’ => 40,
‘supports’ => array( ‘title’, ‘thumbnail’ )
);
register_post_type( ‘franchisee-coaches’, $args );
Plugin Support
Hannah S.L.
(@fernashes)
Automattic Happiness Engineer
Hey there,
As no one has been able to jump in and help, you’ll need to work with a developer to take this further. In that case, I highly recommend contacting one of the services on our customizations page: https://woocommerce.com/customizations/