Just fixed an issue with the default layout for Google Product Feed Layout in 16.0.1 QCHB
The template utilises
However this truncates feed output to the defined pagination length.
To fix I amended block to:
The template utilises
Code:
<actinic:block type="ProductList" if="%3cactinic%3avariable%20name%3d%22IsSectionExcludedFromGoogleExport%22%20%2f%3e%20%3d%3d%200" >
To fix I amended block to:
Code:
<actinic:block type="SectionEntireProductList" if="%3cactinic%3avariable%20name%3d%22IsSectionExcludedFromGoogleExport%22%20%2f%3e%20%3d%3d%200" >
Comment