Hello, I was wondering if there is a shortcode to move the dotted part (Woocommerce) in the image to the new location:
Thanks!
Hey EricSmeets,
Try adding this code to the end of your functions.php file in Appearance ▸ Editor:
function custom_script() { ?>
<script>
(function($) {
$('#top.single-product #wrap_all .single-product-summary .product_meta').css({ 'line-height': '24px' }).detach().insertAfter('.single-product-summary .single_add_to_cart_button');
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'custom_script');
Best regards,
Mike
Perfect, thanks Mike for your reply!