查看 zen-cart 中的页面子总文本问题
我在 zen-cart 工作,我的问题是,在结账页面中有一个名为购物车内容的部分,其中显示商品名称、内容和总金额。
后来出现了小计部分、地块、税收和总计部分,
我不确定这些值来自哪里以及如何编辑或配置它们。
请帮忙
I'm working in zen-cart and my issue is, in check out page there comes a section called shopping cart contents which displays the items name and content and total amount.
Later there come the sub-total section, parcel, tax and total section
I'm not sure from where these values come from and how can I edit or configure them.
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否想知道小计、税收等的标签或值?
标签由includes/languages/english/modules/order_total 中的文件控制。
例如,标签“Sub-Total”位于该目录中的 ot_subtotal.php 中。
您可以通过使用模板名称创建一个目录来更改这些内容
include/languages/english/modules/order_total,复制相关文件并在那里编辑。
这些值由includes/modules/order_total 中的文件计算。但这些文件返回的值是根据您在管理面板中设置的标志和值(例如税率等)设置的。
Are you wondering about the labels for subtotal, tax, etc. or the values?
The labels are controlled by files in includes/languages/english/modules/order_total.
For instance, the label "Sub-Total" is in ot_subtotal.php in that directory.
You can change these by creating a directory with the name of your template in
includes/languages/english/modules/order_total, copying the relevant files in, and editing them there.
The values are computed by files in includes/modules/order_total. But the values these files return are set according to flags and values you set in your admin panel, such as tax rate and so forth.