StoreHippo allows you to provide a downloadable file related to the product on the product page. A product file can be detailed information about the product in the form of image, document or pdf files, etc. Using this feature, you can provide a free downloadable file directly on the product pages, such as an e-book, size chart or assembly instructions, etc.
Follow the below steps to add a file on the product page:
<div class="files" ng-if="product.files.length"> <div data-ng-repeat="record in product.files"> <div ng-if="record.file" class="ms-mt-s ms-mb-s"> <a ng-href="{{record.file|file}}" download="file" target="_blank"> {{'Download File'|msTranslate}} </a> </div> </div> </div>