Guys,
Please can you help I have a product displayed at https://www.psweb-test1.com/bridal-shop-leicestershire/bridal-shoes/baccara-merle-morris/ and I want to modify the position of the products tabs to this see: http://www.psweb-test1.com/new-design.pdf
Many Thanks
Peter
Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){
if(is_singular('product')){
?>
<script>
(function($){
$(window).load(function() {
$('div[itemprop="description"]').before($('.woocommerce-tabs').detach());
});
})(jQuery);
</script>
<?php
}
}
add_action('wp_footer', 'add_custom_script');
And add this to Quick CSS:
.main_color div.product .woocommerce-tabs .panel {
border-color :#e1e1e1;
}
Regards,
Josue