Pro vývojáře
Filtry
Section titled “Filtry”wpify_woo_sklik_retargeting_render_code
Section titled “wpify_woo_sklik_retargeting_render_code”Kontroluje, zda se má retargetingový kód vykreslit.
add_filter( 'wpify_woo_sklik_retargeting_render_code', function( $render ) { // Nezobrazovat pro přihlášené uživatele if ( is_user_logged_in() ) { return false; } return $render;} );| Parametr | Typ | Popis |
|---|---|---|
$render | bool | true pro zobrazení (výchozí) |
Vrací: bool
wpify_woo_sklik_retargeting_parameters
Section titled “wpify_woo_sklik_retargeting_parameters”Upravuje parametry odesílané do retargetingového kódu.
add_filter( 'wpify_woo_sklik_retargeting_parameters', function( $parameters ) { // Přidat vlastní parametr $parameters['customParam'] = '"hodnota"'; return $parameters;} );| Parametr | Typ | Popis |
|---|---|---|
$parameters | array | Pole parametrů pro retargetingConf |
Vrací: array
Výchozí struktura:
[ 'rtgId' => 'vas-rtg-id', 'itemId' => '"123, 124, 125"', // pouze na stránce produktu 'pageType' => '"offerdetail"', // nebo "category" 'category' => '"Elektronika"', // pouze na stránce kategorie 'consent' => 'document.cookie.includes("cmplz_marketing=allow") ? 1 : 0']Příklad: Přidání ceny produktu
Section titled “Příklad: Přidání ceny produktu”add_filter( 'wpify_woo_sklik_retargeting_parameters', function( $parameters ) { if ( is_product() ) { $product = wc_get_product( get_the_ID() ); $parameters['price'] = '"' . $product->get_price() . '"'; } return $parameters;} );Struktura výstupního kódu
Section titled “Struktura výstupního kódu”<!-- Sklik retargeting --><script type="text/javascript" src="https://c.seznam.cz/js/rc.js"></script><script> var retargetingConf = { rtgId: vas-rtg-id, itemId: "123, 124, 125", pageType: "offerdetail", consent: document.cookie.includes("cmplz_marketing=allow") ? 1 : 0 }; if (window.rc && window.rc.retargetingHit) { window.rc.retargetingHit(retargetingConf); }</script>| Hook | Typ | Popis |
|---|---|---|
wp_footer | Action | Vykreslení retargetingového kódu (priorita 20) |