Title: Tracking kód
Last modified: July 17, 2025

---

# Tracking kód

 *  Resolved [Peter Bohuš](https://wordpress.org/support/users/peterbohus/)
 * (@peterbohus)
 * [1 year ago](https://wordpress.org/support/topic/tracking-kod/)
 * Dobrý deň,
 * je možné v emaily odosielať tracking kód?

Viewing 1 replies (of 1 total)

 *  Plugin Author [Webikon s.r.o.](https://wordpress.org/support/users/webikon/)
 * (@webikon)
 * [1 year ago](https://wordpress.org/support/topic/tracking-kod/#post-18585434)
 * Dobrý deň, 
   do emailu je možné vložiť číslo balíka. To číslo sa po exporte objednávky
   do DPD uloží do meta poľa dpd_export_package_number. Vy ho potom môžete odtiaľ
   vytiahnuť a vložiť do emailu napr. pomocou WC hooku woocommerce_email_after_order_table.
   Kód by mohol vyzerať nejako takto, no je možné, že si to ešte budete musieť prispôsobiť.
 *     ```wp-block-code
       add_action('woocommerce_email_after_order_table', function ($order, $sent_to_admin, $plain_text, $email) {    // Only show to customers, not admin    if ($sent_to_admin) {        return;    }    // Get package number    $package_number = $order->get_meta('dpd_export_package_number', true);    if (empty($package_number)) {        return;    }    // Only show in specific email types    $email_types = ['customer_completed_order', 'customer_processing_order', 'customer_on_hold_order', 'customer_invoice'];    if (!in_array($email->id, $email_types)) {        return;    }    echo "<p>DPD číslo balíka: " . $package_number . "</p>";}, 15, 4);
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Tracking kód’ is closed to new replies.

 * ![](https://ps.w.org/wc-dpd/assets/icon-128x128.png?rev=2796559)
 * [DPD SK for WooCommerce](https://wordpress.org/plugins/wc-dpd/)
 * [Support Threads](https://wordpress.org/support/plugin/wc-dpd/)
 * [Active Topics](https://wordpress.org/support/plugin/wc-dpd/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wc-dpd/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wc-dpd/reviews/)

## Tags

 * [tracking](https://wordpress.org/support/topic-tag/tracking/)

 * 1 reply
 * 2 participants
 * Last reply from: [Webikon s.r.o.](https://wordpress.org/support/users/webikon/)
 * Last activity: [1 year ago](https://wordpress.org/support/topic/tracking-kod/#post-18585434)
 * Status: resolved