Skip to content

Reviews Import

The module allows you to import customer reviews from Heureka and display them on your website.

  1. In the module settings, enable “Enable shop reviews”
  2. Fill in the required information (see below)
  3. Save changes

In the “Reviews feed URL” field, enter the URL of the XML reviews feed from Heureka.

For proper functionality, fill in these details from Heureka:

FieldDescription
Shop certificate IDE-shop certificate ID
Shop IDE-shop ID on Heureka
Shop nameE-shop name

You can find these details in the Heureka administration or in the URL of your profile.

After setting up the feed, you can manually trigger the import:

  1. Go to the module settings
  2. In the reviews section, click the “Import reviews” button
  3. Wait for the import to complete

To display reviews, use the shortcode:

[wpify_woo_heureka_reviews]
ParameterDefaultDescription
count6Number of reviews to display
widget1Show widget (1) or list (0)
button_textemptyButton text for link to more reviews
button_urlemptyURL for button (e.g., Heureka profile)

Basic display of 6 reviews:

[wpify_woo_heureka_reviews]

10 reviews with button:

[wpify_woo_heureka_reviews count="10" button_text="Show more reviews" button_url="https://heureka.cz/your-eshop"]

List instead of widget:

[wpify_woo_heureka_reviews widget="0" count="5"]

You can insert the shortcode into:

  • Pages and posts
  • Widgets
  • Theme templates using do_shortcode()
  • Page builders (Elementor, Divi, etc.)
// In theme template
echo do_shortcode( '[wpify_woo_heureka_reviews count="4"]' );