我在germanmart的每个产品都有pdf,我想在新标签中打开pdf。
在配置/店面的virtmart中,我选中了显示pdf视图图标框。
现在我在html中用firebug工具找到了我必须更改a href
标签的行,但是我无法在joomla文件中找到它来添加target="_blank"
属性。
答案 0 :(得分:0)
您可能需要文件 components / com_virtuemart / views / productdetails / tmpl / default.php
最好复制此文件并粘贴到 templates / your_template / html / com_virtuemart / productdetails / 并在
行下if (VmConfig::get('pdf_icon', 1) == '1') {
写点像
echo '<a href="'.$link.'&format=pdf" target="_blank">PDF</a>';