This was the suggestion:
Hi
Go to atelier/woocommerce/content-single-product.php and find these lines at the bottom of the file: http://d.pr/i/1aHZx/2uppNaqY
Move
/**
* Product Related
*/
if ($sidebar_config == “no-sidebars”) { ?>
<div class=”container product-related-wrap”>
<?php } ?>
<?php
/**
* woocommerce_after_single_product_summary hook
*
* @hooked woocommerce_output_related_products – 20
*/
do_action( ‘sf_after_single_product_reviews’ );
?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
* Product Related
*/
if ($sidebar_config == “no-sidebars”) { ?>
<div class=”container product-related-wrap”>
<?php } ?>
<?php
/**
* woocommerce_after_single_product_summary hook
*
* @hooked woocommerce_output_related_products – 20
*/
do_action( ‘sf_after_single_product_reviews’ );
?>
Above
/**
* Product Reviews
*/
Where would I insert the }?