Virtuemart 设置“结账”链接到目标=“新”

发布于 2024-12-09 20:50:10 字数 221 浏览 0 评论 0原文

我知道这个问题仅针对虚拟机,但我已经没有选择了。 我通常只需要进行最少的 php 代码编辑就可以了,但他的内容超出了我的能力范围。

我找不到与“结账”链接相关的 php,

我需要在新窗口中打开它,即。 target="new"

原因是; VM 正在 iframe (facebook) 中运行,为了让 Paypal 工作,我需要将用户从 iframe 中拉出并在结账时进入新窗口。

I know this question is specific to VM only but I have run out of options.
I'm usually ok with minimal php code editing, but his is over my head.

I can not find the php that relates to the "checkout" link

I need to have it open in a new window ie. target="new"

Reason being; VM is running in an iframe (facebook) and for Paypal to work I need to pull the user out of iframe and into new window on checkout.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-12-16 20:50:10

中找到结帐链接

components/com_virtuemart/themes/default/templates/pages/shop.cart.tpl.php

您可以在(如果您不使用默认主题,则将“默认”替换为主题目录的名称)

。您可能无法找到结帐链接,因为 VirtueMart 使用语言文件,因此结帐链接的文本实际上是 PHPSHOP_CHECKOUT_TITLE,并从 administrator/components/com_virtuemart/languages/common/< /code> 例如english.php。工作流程是递归地 grep 查找文本以在语言文件中查找它,然后递归地 grep 查找其引用以查找其使用位置。

结帐链接是通过调用 vmCommonHTML 超链接生成的,该超链接采用以下参数:

function hyperLink( $link, $text, $target='', $title='', $attributes='' )
...

因此您需要在第三个参数中指定目标,因此将: 更改

echo vmCommonHTML::hyperlink( $href, $text, '', $text, $class_att );

echo vmCommonHTML::hyperlink( $href, $text, 'new', $text, $class_att );

You can find the checkout link in

components/com_virtuemart/themes/default/templates/pages/shop.cart.tpl.php

(If you're not using the default theme then replace 'default' with the name of your theme's directory).

You might have had trouble finding the checkout link because VirtueMart uses language files, so the text for the checkout link is actually PHPSHOP_CHECKOUT_TITLE and looked up from administrator/components/com_virtuemart/languages/common/ e.g. english.php. The workflow is recursively grep for the text to find it in the language file then recursively grep for its reference to find where it's used.

The checkout link is generated by a call to vmCommonHTML hyperlink, which takes the following parameters:

function hyperLink( $link, $text, $target='', $title='', $attributes='' )
...

So you'd need to specify the target in the third parameter, so change:

echo vmCommonHTML::hyperlink( $href, $text, '', $text, $class_att );

to

echo vmCommonHTML::hyperlink( $href, $text, 'new', $text, $class_att );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文