Magento:获取商店联系电话
看起来应该很简单,但在任何地方都找不到解决方案。我需要输出商店联系电话号码,该号码位于管理员的商店信息中。
我需要将其输出到模板文件和 CMS 页面中,每个文件的代码是什么?
谢谢 :)
Seems like it should be simple, but cant find a solution anywhere. I need to output the Store Contact Telephone number, which is in Store Informtion in the admin.
I need to output it in template files and CMS pages, what would the code be for each?
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个核心配置,因此它保存在
core_config_data
表中,电话信息是该字段:因此,您所需要做的就是读取配置数据,如
对于CMS页面插入以下变量:
您可以找到有关此的更多信息 这里,您随时可以以编程方式执行相反操作
That's a Core configuration, so it's saved in
core_config_data
table, and the phone information is the field:So, all you need is to read the configuration data as
For CMS pages insert the following variable:
You can find more info on this here, and you can always do the reverse programmatically