Perfect that worked a treat. Thanks. It does however lead to a new issue. I’m using the Enfold theme which uses the Avia Layout Builder. When I edit the Achievment I do not have the options to control sidebars, headers and footers e.t.c.
I added this code to add the Avia options to LearnDash.
add_filter(‘avf_builder_boxes’, ‘avia_register_meta_boxes’, 10, 1); //Add meta boxes to custom post types
function avia_register_meta_boxes($boxes)
{
if(!empty($boxes))
{
foreach($boxes as $key => $box)
{
$boxes[$key][‘page’][] = ‘sfwd-courses’;
$boxes[$key][‘page’][] = ‘sfwd-lessons’;
$boxes[$key][‘page’][] = ‘sfwd-topic’;
$boxes[$key][‘page’][] = ‘sfwd-quiz’;
}
}
return $boxes;
}
Can I do something similar for GamiPress custom post types?
Best JOhn