2015-05-31 78 views
0

我與我們的合作伙伴有一個問題,他們使用prestashop解決方案。我們需要在購物車後應用轉化像素感謝頁面。像素應如下所示:PrestaShop轉換像素感謝頁

<img height='1' width='1' border='0' src='//www.clickmeter.com/conversion.aspx?id=DB7077FAD955498789248815C72336E&val=0.00&param=empty&comperc=0' /> 

我們需要將此部分替換爲:val = 0.00 by the shopping cart的值。

回答

0

你需要做一個模塊,並使用鉤子displayOrderConfirmation

對於掛鉤處理,使用這樣的

public function hookDisplayOrderConfirmation($params) 
{ 
    $total = (float)$params['total_to_pay']; 
    //convert to main shop currency 
    $total = Tools::convertPrice($total); 
    return ".../conversion.aspx?id=...&val=".(float)$total."&param=emp..."; 
} 

您可以輕鬆地generate a module here,在Step 3Order confirmation page