Does Flixmedia code work if I don’t have a product page?
Unfortunately, the answer is NO - You need to have a proper e-commerce website and a product page for the Flixmedia code to work.
How do I make the JS code work on Magento platform and Google Tag Manager?
Below is the custom JS Code that we provide to retailers. The variables product_mpn and product_brand need to corrected by the retailer to make it point to the value passed on the page as the MPN (essential) and Brand name on the page or the values can be dynamically passed through the server script. This will depend on how the retailer would get the values. Just pass the above information to the retailer and their tech team should be able to understand
<script>
$( document).ready(function() {
var product_mpn= jQuery('#product-attribute-specs-table').find('.label').each(function(){
if(jQuery(this).text()==='MPN')
(jQuery(this).next('.data').text())
});
varproduct_brand = jQuery('#product-attribute-specs-table').find('.label').each(function(){
if(jQuery(this).text()==='Manufacturer')
(jQuery(this).next('.data').text())
});
var headID =document.getElementsByTagName("head")[0];
var flixScript= document.createElement('script');
flixScript.type= 'text/javascript';
flixScript.src= '//media.flixfacts.com/js/loader.js';
flixScript.setAttribute('data-flix-distributor',{distributor_id});
flixScript.setAttribute('data-flix-language', {language_code});
flixScript.setAttribute('data-flix-brand', {brand});
flixScript.setAttribute('data-flix-ean', '{ean}');
flixScript.setAttribute('data-flix-mpn', {mpn});
flixScript.setAttribute('data-flix-button','flix-minisite');
flixScript.setAttribute('data-flix-inpage', 'flix-inpage');
flixScript.setAttribute('data-flix-price', '');
flixScript.setAttribute('data-flix-fallback-language','en');
headID.appendChild(flixScript);
});
</script>
<div id="flix-minisite"></div>
<div id="flix-inpage"></div>
Can I have multiple MiniSites and INpages for different products on one product page syndicated automatically?
No
Can I edit any of the content before putting it live?
No
Can I see the content before it goes live?
Previewing content is possible in Flix360. Get registered and preview!
What sort of reporting is captured on our site?
Essential metrics to show the brands the effectiveness of Flixmedia's Content Syndication service are collected. Without these, brands will not have data to prove the incredible effectiveness of our service. Impressions, Page views and clicks are the main metrics collected where the Flixmedia content is rendering.
What brands and products are covered?
The products which have JavaScript code implemented in the way explained elsewhere in these FAQs
Does Flixmedia track page impressions?
Yes, Flixmedia tracks some parameters like content availability and page impressions when the JavaScript code is implemented.
I use UPC codes, where do I need to integrate these codes in your JavaScript?
UPC codes (as well as GTIN or similar barcodes) need to be passed as EAN attribute (data-flix-ean) in the Flixmedia Javascript.
