Woocommerce recent products being shown in the wrong order (above the visual composer content)

Hi, 
I have a question about the ordering of the recent/related products section that has been built into the "Woocommerce Product Page" block in Visual Composer

Short explanation:

I have a single product page which consists of 3 sections.
The top section is a header section built out of a Title area with a background. nothing fancy.
The middle section is the "Woocommerce Product Page" block. This block is loading the content from the chosen product and also shows the recent/related products.
The bottom section is a 2 column section where 1 side is an image and the other is a text area.

The problem:


Now, the recent/related products are being shown below the middle section and above the bottom section.
I would like to move the recent/related products all the way to the bottom of the page so it ends up being underneath the bottom section.

What I've already tried:


I already changed the order of which the templates are being shown in: content-single-product.php
I did this by changing the values behind:  "@hooked woocommerce_output_related_products - 20" 
I then placed them in my functions.php like so:
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 80 ); 

Sadly it's not working.

Is there any way I can change the order of the related/recent products section?

Comments

Sign In or Register to comment.