Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mikko Saari

    (@msaari)

    There’s no specific WooCommerce functionality in Relevanssi Premium; both free and Premium work just as well with WooCommerce.

    The function works on all post types, including posts, pages, products and other custom post types. However, with WooCommerce products, you probably need to fetch more content from the translated post. WooCommerce keeps the product description in the excerpt, so you want to include at least that:

    $content        .= ' ' . $translated_post->post_content;
    $content .= ' ' . $translated_post->post_title;
    $content .= ' ' . $translated_post->post_excerpt;

    Thread Starter xCelestialx

    (@samvel45)

    Thank you very much!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Synchronize search between Woocommerce products’ is closed to new replies.