Con la plataforma InSales puedes crear una tienda online de forma totalmente independiente y rápida, sin ayuda de programadores o desarrolladores.
La integración se realiza directamente en el panel de administración mediante una sección especial diseñada para códigos JavaScript personalizados para la página de agradecimiento.
Puedes hacer un seguimiento del ID del pedido, del total del pedido, puedes utilizar el seguimiento por producto y las comisiones de por vida.
Seguimiento del pedido
Para hacer un seguimiento de las comisiones por pedido, utiliza el código que aparece a continuación. Colócalo en Configuración > General en tu panel de administración – hay un área de texto especial para código javascript.
<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('{{order.total_price}}');
sale.setOrderID('{{order.number}}');
sale.setProductID('{% for item in order.items%}{{item.title}}{% if order.items.size> 1%}, {% endif%}{% endfor%}');
sale.setData1('{{order.client.email}}');
PostAffTracker.register ();
</script>
¡Guarda tu trabajo y ya está!
Seguimiento por producto
En caso de que quieras hacer un seguimiento de cada artículo como una comisión independiente, utiliza el siguiente código en su lugar.
<script id="pap_x2s6df8d" src="https://URL_TO_PostAffiliatePro/scripts/trackjs.js" type="text/javascript"></script>
<script type="text/javascript">PostAffTracker.setAccountId('Account_ID');
{% for item in order.items %}
var sale{% forloop.counter %} = PostAffTracker.createSale();
sale{% forloop.counter %}.setTotalCost('{{item.total_price}}');
sale{% forloop.counter %}.setOrderID('{{order.number}}({% forloop.counter %})');
sale{% forloop.counter %}.setProductID('{{item.id}}');
sale{% forloop.counter %}.setData1('{{order.client.email}}');
PostAffTracker.register ();
{% endfor %}
</script>
Guarda tu trabajo y ya está.
No olvides integrar tu sitio con el código de seguimiento de clics – es necesario añadirlo en cada página que quieras utilizar como URL de destino para tus banners/enlaces de afiliados.
The article talks about the integration of various e-commerce platforms with the affiliate management software, Post Affiliate Pro. The steps for integration and configuration are explained in detail. The importance of tracking clicks is emphasized, and free trial options are offered. The article also discusses the software's features and benefits, such as fraud protection, free audit log, and enhancing efficiency, security, and performance. Special attention is drawn to the integration with Earth Skater, and a step-by-step guide is provided to add the tracking code.
The text describes Post Affiliate Pro, a platform for affiliate marketing, and discusses its availability and integration with other payment options such as PaySimple, PayU, PlugnPay, and Ecwid. Users can start a free trial by accepting the terms and conditions and choosing a subdomain name. The text also mentions the platform's high ratings.
The text discusses the integration of Post Affiliate Pro with various e-commerce platforms to create affiliate programs for businesses. The plugin allows for the tracking of commissions, email, and customer information. The article provides instructions on how to install the plugin and mentions resources available for other e-commerce platforms. The company offers a free account and provides a tracking code for sales. The article reiterates the same information multiple times.