Verkoop eenvoudig zowel digitale als fysieke producten met deze plug-in.
Deze integratiemethode integreert de Cart66 (WordPress-plug-in) ontvangstpagina.
Verkoop volgen
if(Cart66Setting::getValue('enable_google_analytics') == 1 && $order->viewed == 0)
<!-- Post Affiliate Pro integration snippet -->
<script id="pap_x2s6df8d" src="https://URL_TO_PostAffiliatePro/scripts/trackjs.js" type="text/javascript"></script>
<script type="text/javascript">
PostAffTracker.setAccountId('Account_ID');
var sale = PostAffTracker.createSale();
sale.setTotalCost('<?php echo number_format($order->total, 2, ".", ""); ?>');
sale.setOrderID('<?php echo $order->trans_id; ?>');
sale.setProductID('<?php echo get_bloginfo("name"); ?>');
PostAffTracker.register();
</script>
<!-- /Post Affiliate Pro integration snippet -->
Dat is het. Sla uw wijzigingen op. Nu is uw systeem geïntegreerd.
Per product volgen
Als u uw bestellingen per product wilt volgen, gebruik dan deze code:
<!-- Post Affiliate Pro integration snippet -->
<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
$i = 1;
foreach ($order->getItems() as $item) {
?>
echo "var sale$i = PostAffTracker.createSale();";
echo "sale$i.setTotalCost('".$item->product_price * $item->quantity."');";
echo "sale$i.setOrderID('".$order->trans_id."(".$i.")');";
echo "sale$i.setProductID('".$item->product_id."');";
<?php
$i++;
}
?>
PostAffTracker.register();
</script>
<!-- /Post Affiliate Pro integration snippet -->
Kortingsbon volgen
Als u het volgen van kortingsbonnen wilt ondersteunen, voegt u deze code toe aan uw verkooptrackingcode:
<?php
if (!empty($order->coupon) && !empty($couponCodeUsed)) {
$coupons = explode(" (",$couponCodeUsed, 2);
echo "sale.setCoupon('".$coupons[0]."');\n";
}
?>
Als u het kortingsbedrag in uw verkooptrackingcode ergens voor wilt gebruiken, kunt u deze variabele gebruiken:
$order->discount_amount
Cart66 op Cloud
Als u de cloudgebaseerde Cart66 heeft, is de integratie ook mogelijk. U kunt bestellingen per product niet volgen, maar u kunt wel het subtotaal van de bestelling en de bestel-ID volgen. Voeg de volgende HTML-trackingcode toe aan uw bedankpagina:
<img src="//URL_TO_PostAffiliatePro/scripts/{$ImageTrackUrl}&TotalCost={{order_subtotal}}&OrderID={{order_number}}" width="1" height="1" />
Dat is het. Sla uw werk op en u bent klaar.
The text discusses the availability of Post Affiliate Pro integrations for small and medium businesses. It provides instructions for navigating to the thank you page code, tracking codes, and click tracking. The integration with CommerceGate is also mentioned, along with the integration of eCommerce templates with Post Affiliate Pro. The text also highlights the ability to track orders and commissions for referring partners. Free accounts are available to begin using these features.
This article discusses various integrations with Post Affiliate Pro, including with eCartSoft, Shopware, CommerceGate, and Ecwid. It explains how to add code to checkout templates or integrate with payment gateways to track sales and provide lifetime commissions. The article also offers related resources and a free account to try out the service. Overall, Post Affiliate Pro offers a comprehensive solution for businesses looking to implement a partner program on their website or e-commerce platform.
The article discusses the integration of Post Affiliate Pro with various e-commerce solutions like ViArt, Volusion, ThriveCart, and InSales. It provides instructions for tracking sales on the thank you page and mentions related integration controls for web shops and shopping carts. Additionally, it explains how to enter and edit tracking script codes for better conversion analysis and lifetime commission tracking. The article offers detailed information for those wanting to integrate their e-commerce solution with Post Affiliate Pro for effective marketing.
De tekst gaat over de beschikbaarheid van Post Affiliate Pro en het aanmaken van een gratis account. Er wordt ook informatie gegeven over hoe het winkelwagenscript Quick.Cart kan worden geïntegreerd met Post Affiliate Pro om commissies te genereren voor aangeslotenen. Ook worden er gerelateerde bronnen vermeld, zoals ViArt en Volusion API.