Magento:获取商店联系电话

发布于 2024-10-20 17:01:27 字数 116 浏览 1 评论 0原文

看起来应该很简单,但在任何地方都找不到解决方案。我需要输出商店联系电话号码,该号码位于管理员的商店信息中。

我需要将其输出到模板文件和 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 技术交流群。

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

发布评论

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

评论(1

回心转意 2024-10-27 17:01:27

这是一个核心配置,因此它保存在core_config_data表中,电话信息是该字段:

general/store_information/phone

因此,您所需要做的就是读取配置数据,如

$storePhone = Mage::getStoreConfig('general/store_information/phone');

对于CMS页面插入以下变量:

{{config path="general/store_information/phone"}}

您可以找到有关此的更多信息 这里,您随时可以以编程方式执行相反操作

That's a Core configuration, so it's saved in core_config_data table, and the phone information is the field:

general/store_information/phone

So, all you need is to read the configuration data as

$storePhone = Mage::getStoreConfig('general/store_information/phone');

For CMS pages insert the following variable:

{{config path="general/store_information/phone"}}

You can find more info on this here, and you can always do the reverse programmatically

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