Hello,
Thank you for contacting us.
You can try to achieve this by replacing code for single product page (file name basel/woocommerce/content-single-product.php
) with the following
<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
?>
<div class="single-breadcrumbs-wrapper">
<div class="container">
<?php woocommerce_breadcrumb(); ?>
<?php basel_products_nav(); ?>
</div>
</div>
<div itemscope itemtype="<?php echo woocommerce_get_product_schema(); ?>" id="product-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="container">
<?php the_content(); ?>
</div>
</div>
Regards