View Single Post
  #1  
Old 01-10-2020, 05:07 AM
 
Bishmos Bishmos is offline
 

Advanced Member
  
Join Date: Jun 2011
Posts: 31
 

Default Feefo iframe review integration

Hi,


I'm trying to use Feefo reviews iFrame integration to send order data from the order confirmation page. I have two main problems/questions that are beyond me. Here's the iframe code:


Code:
<iframe id="FSI_IFrame" style="display: none; " width="0" height="0" src="https://api.feefo.com/api/sales/merchant?merchantidentifier=identifier" data-feefo-email="{$order.email}" data-feefo-orderref="#{$order.orderid}" data-feefo-name="{$order.firstname}{$order.lastname}" data-feefo-customerref="#{$order.orderid}” data-feefo-feedbackdate="?????" data-feefo-products='[{"description":"{$product.product}","productsearchcode":"{$product.productcode}","amount":"{$product.display_price}","productlink":"url","currency":"GBP","tags":{"saleschannel":"Web","productline":"games"}},]> </iframe>


and here's the issues:

  • 'data-feefo-feedbackdate' needs to be a certain amount of days in the future from the date of order to allow for the product to be delivered (i.e. 7 days) so I can't just use {$order.date|date_format:$config.Appearance.dateti me_format}. What can I do to calculate a date in the future?
  • 'data-feefo-products' how would include more than one product? I know that they need to be comma separated but don't know how this is expressed.
I may have issues with the other values as well so feel free to let me know if you notice something stupid


thanks
__________________
X-Cart Gold v4.7.5
Reply With Quote