Skip to content

Frequently Asked Questions

What is limited conversion tracking?

Limited tracking (type limited) sends conversion data only using frontend JavaScript code on the thank you page.

Limitations:

  • Data is not sent if the customer closes the page prematurely
  • Lower accuracy compared to backend tracking
  • Does not support satisfaction surveys

For full-featured tracking, we recommend the premium extension.

What is the difference compared to the premium version?
FeatureLimited VersionPremium Version
Frontend trackingYesYes
Backend trackingNoYes
Satisfaction surveyNoYes
Tracking typelimitedstandard
Can I use both modules simultaneously?

No. If you have both modules active, duplicate conversions may be sent. The module will display a warning in the administration.

We recommend using only one module - ideally the premium version.

Where can I find the Shop ID and Private Key?
  1. Log in to the Zbozi.cz administration
  2. Go to the conversion tracking section
  3. Copy the Shop ID and Private Key
Where can I find the Sklik ID?
  1. Log in to the Sklik.cz interface
  2. Go to conversion tracking settings
  3. Copy the conversion code ID
Is the module GDPR compliant?

Yes, if you properly configure marketing cookies. The module checks cookie consent and sends the consent parameter to Seznam.

Without cookie detection settings, data is sent as if consent was granted.

When is the conversion code displayed?

The conversion code is displayed only on the thank you page after successfully completing an order.

Can I disable display for certain orders?

Yes. Use the wpify_woo_zbozi_conversion_render_code filter:

add_filter( 'wpify_woo_zbozi_conversion_render_code', function( $render ) {
// Your condition
return false;
} );
Can I add custom parameters?

Yes. Use the wpify_woo_zbozi_conversion_script_parameters filter:

add_filter( 'wpify_woo_zbozi_conversion_script_parameters', function( $params ) {
$params['customParam'] = '"value"';
return $params;
} );
How can I verify that tracking is working?
  1. Place a test order
  2. On the thank you page, open the console (F12 → Console)
  3. Look for output conversionConf
  4. Verify the correctness of values
  5. In the Network tab, check for calls to c.seznam.cz