Hi @pedcam,
Thank you for using Neve theme.
We do not have a dedicated code for this, however, as a hint this code could work:
function remove_sidebar_on_category($value) {
if( function_exists('is_product_category') && is_product_category() ) {
return 'full-width';
}
return $value;
}
add_filter('neve_sidebar_position', 'remove_sidebar_on_category');
It’s used to show full width (no sidebar) on the WooCommerce category page so basically, you need to replace the condition that checks is_product_category with the condition that checks if it’s the Learndash page.
I hope it helps!