s10e02 - Product Uploads SUPPORT / QUESTIONS / CHAT
Posted: Wed Dec 08, 2021 9:54 am
Addon:
Allows shopowner to attach documents to products.
Download:
viewtopic.php?f=28&t=968
--
Just a small note:
On Chrome, PDF's are opened as default instead of downloaded. This would make the customer leave the shop, to look on a document. An annoyance for them, and could be bad for conversions.
For that reason, I added
to line 9 in includes/modules/content/product_info/templates/tpl_cm_pi_uploads.php making that line look like this:
//Daniel
Allows shopowner to attach documents to products.
Download:
viewtopic.php?f=28&t=968
--
Just a small note:
On Chrome, PDF's are opened as default instead of downloaded. This would make the customer leave the shop, to look on a document. An annoyance for them, and could be bad for conversions.
For that reason, I added
Code: Select all
target="_blank" rel="noopener"Code: Select all
$pi_uploads .= '<a href="pub/' . htmlspecialchars($v['file']) . '" target="_blank" rel="noopener" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">';