Hi @caseproof
thanks for respond, Ya I didn’t touch anything on admin capabilities. Please tell me need to change in Database.
I think this is useful to you,
In woocommerce\templates\single-product\related.php page line no 29 like if ( $products->have_posts() ) : ?>
<div class=”related products”>
<h2><?php _e(‘Related Products’, ‘woocommerce’); ?></h2>
<ul class=”products”>
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
<?php woocommerce_get_template_part( ‘content’, ‘product’ ); ?>
<?php endwhile; // end of the loop. ?>
</div>
<?php
endif;
if you comment on this code(put before the code /* and end with */), then that related products are not displayed in single product page.