Hi @nikidexa !
Most likely you need to edit your theme’s product page template to change the order of the elements.
We are not developers on this channel, however, I was able to create a simple CSS code that will reorder the elements visually. Paste it on Appearance → Customize → Additional CSS
:
.product-info{
display: flex;
flex-wrap: wrap;
}
.product-info > *{
width:100%;
order:1;
}
.product-info .breadcrumbs{
order:0;
}
.product-info .product-title{
order:0;
}
.product-info .price-wrapper{
order:0;
}
.product-info .in-stock{
order:0;
}
For additional assistance on this topic, we recommend getting in touch with one of the customization experts listed on the WooCommerce Customizations Page.
You can also visit the WooCommerce Facebook group or the #developers
channel of the WooCommerce Community Slack. We’re lucky to have a great community of open-source developers for WooCommerce, and many of our developers hang out there, as well.
I hope it helps! ??