Closed mikebranderhorst closed 6 years ago
Can you confirm if this is always the case or only if the setting
System > Configuration > Tax > Price Display Settings > Display Product Prices In Catalog
is set to Including Tax?
In the current code base the setting is always excluding tax. My solution is always including tax. It should be coded to include if given setting is including tax.
Will be fixed in 0.18.2
The Product Price on Product Page is incl. tax, the Row Total on Cart Page should also be incl. tax.
https://github.com/fooman/googleanalyticsplus/blob/master/app/code/community/Fooman/GoogleAnalyticsPlus/Block/Remarketing.php#L119
https://github.com/fooman/googleanalyticsplus/blob/master/app/code/community/Fooman/GoogleAnalyticsPlus/Block/Remarketing.php#L129
'%01.2f', Mage::helper('googleanalyticsplus')->convert($basketItem, 'row_total')
should be:
'%01.2f', Mage::helper('googleanalyticsplus')->convert($basketItem, 'row_total_incl_tax')