Supercart integration
Una soluzione ecommerce ceca.
Questo è il metodo di integrazione con Supercart (supercart.cz).
Modifica il file della pagina di ringraziamento
Come prima cosa devi trovare il file template/default/order_finish.php e aggiungerci questo codice, ad esempio alla fine del file:
<?php echo tpl('system/pap_tracking.php', array('order' => $order)); ?>
Salva le tue modifiche.
Crea un file di tracciamento
Come puoi vedere, abbiamo indirizzato il file modello a un file personalizzato nel passaggio precedente. Ora dobbiamo crearlo.
Crea un file pap_tracking.php nella directory template/system/ e aggiungici questo contenuto:
<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>
Salva il file. Se l’hai creato personalmente, non dimenticare di caricarlo in template/system/. Ecco fatto, hai appena integrato il tuo negozio.
Non dimenticarti di integrare il tuo codice di tracciamento dei clic – puoi inserirlo nel file template/default/footer.php
9. Integrate the affiliate software with your website
Integrate your affiliate software seamlessly with your website for effective tracking of referrals and commissions. Set it up right!
Cookies created by Post Affiliate Pro
Discover the various cookies created by Post Affiliate Pro, including tracking and interface cookies, designed to optimize your affiliate and merchant panel experiences. Learn about their functions, lifetimes, and how they enhance tracking and authentication processes. Visit now to explore detailed insights and manage your cookie settings effectively!
Your API file may not match your PAP installation
If you use an API file on another server than your PAP4 server is, there can appeare an error. Read more about it in the article and solve the problem.
Uploading files with FrontPage
If you are using FrontPage for uploading files to your server, some problems can appear. The FrontPage can not send some files, which will miss. Fix it.