Download file link in page list block
PermalinkThese are the steps that I taken so far..
I've created a custom attribute $downloadLink = $page->getAttribute('download_link');
I'm calling it like
<div class="ordernow"> <a class="btn btn-primary" href="<?php echo $downloadLink ?>" target="_blank">Download</a> </div>
It does create the button and display, however, it does not download the thumbnail. I've even tried
<div class="ordernow"> <a class="btn btn-primary" href="<?php echo $downloadLink ?>" target="_blank" download>Download</a> </div>
That's not working either.
You can try something like this: