Reviews Import
The module allows you to import customer reviews from Heureka and display them on your website.
Activating Reviews Import
Section titled “Activating Reviews Import”- In the module settings, enable “Enable shop reviews”
- Fill in the required information (see below)
- Save changes
Import Settings
Section titled “Import Settings”Feed URL
Section titled “Feed URL”In the “Reviews feed URL” field, enter the URL of the XML reviews feed from Heureka.
E-shop Identifiers
Section titled “E-shop Identifiers”For proper functionality, fill in these details from Heureka:
| Field | Description |
|---|---|
| Shop certificate ID | E-shop certificate ID |
| Shop ID | E-shop ID on Heureka |
| Shop name | E-shop name |
You can find these details in the Heureka administration or in the URL of your profile.
Manual Reviews Import
Section titled “Manual Reviews Import”After setting up the feed, you can manually trigger the import:
- Go to the module settings
- In the reviews section, click the “Import reviews” button
- Wait for the import to complete
Displaying Reviews
Section titled “Displaying Reviews”Shortcode
Section titled “Shortcode”To display reviews, use the shortcode:
[wpify_woo_heureka_reviews]Shortcode Parameters
Section titled “Shortcode Parameters”| Parameter | Default | Description |
|---|---|---|
count | 6 | Number of reviews to display |
widget | 1 | Show widget (1) or list (0) |
button_text | empty | Button text for link to more reviews |
button_url | empty | URL for button (e.g., Heureka profile) |
Usage Examples
Section titled “Usage Examples”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"]Shortcode Placement
Section titled “Shortcode Placement”You can insert the shortcode into:
- Pages and posts
- Widgets
- Theme templates using
do_shortcode() - Page builders (Elementor, Divi, etc.)
// In theme templateecho do_shortcode( '[wpify_woo_heureka_reviews count="4"]' );