需要帮助查找特定的 Magento Javascript 文件
我希望这个论坛中的某个人可以帮助在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
函数
decorateTable
位于js/varien/js.js
中,但它只应用一些类名。通常该图像在寻呼机中用于收集。 javascript 后面的行是:...这似乎更相关。请查看文件
template/page/html/pager.phtml
。The function
decorateTable
is injs/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:...which seems more relevant. Look at the file
template/page/html/pager.phtml
instead.