Support Center
Visit Demo
License manager
Buy @ envato
toggle menu
Categories
Discussions
Activity
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Activity
Sign In
·
Register
×
Home
›
WooCommerce
Cross sell display on product page
hexprpl
March 2017
in
WooCommerce
Could you guide me how to display cross sell products on the single product page
Comments
Bryan
March 2017
Hi,
I can only guide you to the tutorial on the woocommerce website, it is a very good tutorial.
https://docs.woocommerce.com/document/related-products-up-sells-and-cross-sells/
thanks
hexprpl
April 2017
If anyone needs to replace the related products to the cross sell products just edit the related.php file
modify:
if ( ! $related = $product->get_related( $posts_per_page ) ) {
return;
for:
if ( ! $related =
$product->get_cross_sells()) {
return;
and:
<?php _e( 'Related Products', 'woocommerce' ); ?>
for:
<?php _e( 'You may be interested in…', 'woocommerce' ) ?>
i know it is not elegant but it is quick and it works
Sign In
or
Register
to comment.
Comments
I can only guide you to the tutorial on the woocommerce website, it is a very good tutorial.
https://docs.woocommerce.com/document/related-products-up-sells-and-cross-sells/
thanks