Free Magento Plug-in
Export your product catalogue to the Lengow solution.
Find new customers by exporting your product catalogue on price comparison sites!
This module enables you to export your product catalogue in CSV format compatible with the Lengow solution in order to benefit from Lengow’s features.
An easy and quick set-up
1. Download the plugin on our
dedicated page or via Magento Connect : magento-community/Lengow_Export
Then go to your admin panel:
System=>Magento Connect=>Magento Connect Manager
2. Activate the module in section: System=>Configuration=>Advanced
3. Go to your admin panel and then in the Lengow tab
les marques des produits à exporter
les attributs des produits à exporter
Your export is available here
http://www.your-website.com/index.php/export/index?format=csv
4. Install the Lengow conversion tag in your order confirmation pages by placing the following values:
/app/design/frontend/base/default/template/checkout/success.phtml
<?php
$orderId = $this->getOrderId();
$tmp_order = new Mage_Sales_Model_Order();
$tmp_order->loadByIncrementId($orderId);
$montant_ttc = number_format($tmp_order->getGrandTotal(),2);
echo '<img src="https://tracking.lengow.com/lead.php?idClient=
#ID_CLIENT_LENGOW#&price='.$montant_ttc.'&idCommande=
'.$orderId.'" alt="" /?>';
?>