<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
const currentPath = window.location.pathname;
const breadcrumbNav = $('nav.nested-category-breadcrumb.extra-padding');
if (breadcrumbNav.length && currentPath.includes('/pianos-for-hire/') && currentPath !== '/pianos-for-hire') {
const parentUrl = '/pianos-for-hire';
$.get(parentUrl, function(data) {
const $parentPage = $(data);
const $categoryChildren = $parentPage.find('ul.nested-category-children');
if ($categoryChildren.length) {
const $clonedChildren = $categoryChildren.clone();
$clonedChildren.insertAfter(breadcrumbNav);
}
});
}
});
</script>
<style>
ul.nested-category-children {
padding-top: 0px !important;
padding-bottom: 10px !important;
}
nav.nested-category-breadcrumb.extra-padding {
padding-bottom: 20px !important;
margin-bottom: 10px !important;
}
</style>