Suppress the bottom breadcrumb trail on a single page

Is there a way to suppress the bottom breadcrumb trail on just a single page?

Drop this in your javascript and insert the scene number where the XXX is for the page that you want to remove the crumb trail on.

$(document).on('knack-scene-render.scene_XXX', function(event, scene) {
$('.kn-crumbtrail a').hide();
$('.kn-crumbtrail i').hide();
});
1 Like