Cseh e-kereskedelmi megoldás.
Ez a Supercart (supercart.cz) integrációs módszere.
Szerkessze a köszönöm oldal fájlját
Első lépésként meg kell keresni a template/default/order_finish.php fájlt és hozzáadni ezt a kódot, pl. a fájl végére:
<?php echo tpl('system/pap_tracking.php', array('order' => $order)); ?>
Mentse el a változtatásokat.
Hozza létre a nyomkövető fájlt
Amint láthatja, az előző lépésben a sablonfájlt egy egyéni fájlra irányítottuk. Most létre kell hoznunk.
Hozzon létre egy pap_tracking.php fájlt a template/system/ könyvtárban, és adja hozzá a következő tartalmat:
<script id="pap_x2s6df8d" src="https://URL_TO_PostAffiliatePro/scripts/trackjs.js" type="text/javascript"></script>
<script type="text/javascript">
PostAffTracker.setAccountId('Account_ID');
<?php
// $order['total_price']
$i = 1;
foreach($order->order_products() as $product) {
echo "var sale$i = PostAffTracker.createSale();";
echo "sale$i.setTotalCost('".$product['price'] * $product['quantity']."');";
echo "sale$i.setOrderID('".$order['id'].'('.$i.")');";
echo "sale$i.setProductID('".($product['sku'] ? $product['sku'] : $product['id'])."');";
$i++;
}
?>
PostAffTracker.register();
</script>
Mentse el a fájlt. Ha helyben hozta létre, kérjük, ne felejtse el feltölteni a template/system/ mappába. Ennyi, az üzletét most integrálták.
Ne felejtse el integrálni a kattintáskövető kódot – beillesztheti a template/default/footer.php fájlba
WishList Member (WordPress tagsági modul)
The affiliate program has many advantages for businesses and reliable software is needed for proper operation. It is important to inform partners about variable changes with email templates. The company offers various products, features, integrations, and support through their website. They also offer learning resources such as a blog, academy, and glossary.
This text discusses the various features and integrations offered by Post Affiliate Pro and Quality Unit LLC for affiliate marketing. It mentions the customizable one-click upsell feature for Shopify stores through CartHook integration. It also talks about integrations with SquirrelCart and ZOHO subscriptions, as well as providing guidance on integrating with RoboKassa payment system.
The article discusses integrations with the Post Affiliate Pro platform, which allows for tracking of affiliate marketing sales. It mentions various integrations available and provides a sample code for tracking sales. The article also mentions the benefits of using the Post Affiliate Pro and how it can be integrated into different platforms such as Windows-based shopping carts and membership systems. It emphasizes the importance of using JavaScript for tracking and provides instructions for setting up the integration.