Hi
After some research on the forum I found a workaround for getting a Pro Header to display on post categories, should this work with portfolio categories as well or will it need adjusting? The slug and ID shown here are the correct ones.
function custom_header_assignment( $match ) {
if ( is_single() ) {
if ( in_category( ‘current-projects’ ) ) {
$match = 300; // the post ID for your header
}
}
return $match;
}
add_filter( ‘cs_match_header_assignment’, ‘custom_header_assignment’ );