需要帮助查找特定的 Magento Javascript 文件

发布于 2024-10-16 03:36:24 字数 518 浏览 2 评论 0原文

我希望这个论坛中的某个人可以帮助在 Magento 购物车中查找特定的 JavaScript 文件。

我正在修复 SSL 非安全项目消息,我已经找到并修复了除其中一个之外的所有消息。

我正在寻找的图像称为“pager_arrow_right.gif”,它位于生成自的客户帐户页面上:

app\design\frontend\default\our_theme\template\sales\order\history.phtml 

图像 src 代码不在该文件中,但看起来图像 src 位于从该历史记录生成的 JavaScript 文件中.phtml 文件:

<script type="text/javascript">decorateTable('my-orders-table')</script>

有谁知道上述代码的 JavaScript 文件位于哪里?

我似乎找不到它..

谢谢! 珍妮特

I'm hoping that someone in this forum can help with finding a specific JavaScript file in a Magento shopping cart.

I'm working on fixing SSL non secure items messages and I've found and fixed all of them except for one.

The image I'm looking for is called "pager_arrow_right.gif" and it's on a customer account page generated from:

app\design\frontend\default\our_theme\template\sales\order\history.phtml 

The image src code is not in this file though, it looks like the image src is in a JavaScript file generated from that history.phtml file:

<script type="text/javascript">decorateTable('my-orders-table')</script>

Does anyone have any idea where the JavaScript file for the above code is located?

I just can't seem to find it..

Thank You !!
Janet

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

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

发布评论

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

评论(1

冷︶言冷语的世界 2024-10-23 03:36:24

函数decorateTable位于js/varien/js.js中,但它只应用一些类名。通常该图像在寻呼机中用于收集。 javascript 后面的行是:

<?php echo $this->getPagerHtml(); ?>

...这似乎更相关。请查看文件 template/page/html/pager.phtml

The function decorateTable is in js/varien/js.js but it only applies some class names. Normally that image is used in pagers for collections. The line following your javascript is:

<?php echo $this->getPagerHtml(); ?>

...which seems more relevant. Look at the file template/page/html/pager.phtml instead.

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