You can send your questions to my email to get faster answer in 24 hours (free).
Buy me a coffee

06-08-2025 (05)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script><script>
$(document).ready(function() {
    $.get('/pianos-for-hire', function(data) {
        var tempDiv = $('<div>').html(data);
        var nestedCategory = tempDiv.find('div.nested-category-tree-wrapper');
        if (nestedCategory.length) {
            nestedCategory.insertBefore('nav.product-nav');
        }
    });
});</script>
<style>
div.product-detail .nested-category-tree-wrapper ul {
    padding-left: 0px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
div.product-detail .nested-category-tree-wrapper ul a {
    margin-left: 10px;
    margin-right: 10px;
}
</style>