• Resolved jaykrishnan

    (@jaykrishnan)


    Hi,

    I want only to display the same store’s products under Related Products on the Single Product Page.

    Appreciate your time and cooperation.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author WC Lovers

    (@wclovers)

    There has a setting related to this at WCFM Admin Setting – Marketplace Setting – https://ibb.co/Dr6Sgvh

    Thread Starter jaykrishnan

    (@jaykrishnan)

    Hi,

    Thank you for the feedback and guidance. After I changed and saved the setting as given attachment, it seems doesn’t working well. It showing all the stores related products.

    I’m not sure whether the saved setting hang somewhere or not? Kindly assist for further action on this matter.

    Appreciate your time and consideration.

    Plugin Author WC Lovers

    (@wclovers)

    Which theme are you using for the site?

    Thread Starter jaykrishnan

    (@jaykrishnan)

    Theme Name: Online Shop
    Author: acmethemes

    Plugin Author WC Lovers

    (@wclovers)

    Kindly add this snippet to your site –

    add_action( 'woocommerce_after_single_product_summary', function() {
    	global $WCFM, $WCFMmp, $product;
    	$product_id = $product->get_id();
    	$transient_name = 'wc_related_' . $product_id;
    	delete_transient( $transient_name );
    }, 15 );

    Add custom code(s) to your child theme’s functions.php
    In case you do not have child theme then add those using this plugin – https://wordpress.org/plugins/code-snippets/

    Thread Starter jaykrishnan

    (@jaykrishnan)

    Hi,

    The snippet working perfectly. It solved the issues. Thank you for the support and help at the right time.

    WCFMmp is great plugin.

    Plugin Author WC Lovers

    (@wclovers)

    You are always welcome 🙂

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Display Stores’ Related Product Only’ is closed to new replies.