gpt4 book ai didi

magento - 打开系统配置时首先显示默认的自定义模块部分

转载 作者:行者123 更新时间:2023-12-02 10:39:31 26 4
gpt4 key购买 nike

我想在点击系统->配置时显示自定义模块配置。

我已经为部分设置了最高排序顺序,但仍然不显示。

我的 system.xml 代码如下所示

<tabs>
<tourtab translate="label" module="customoptioncreater">
<label>Tour Option Configuration</label>
<sort_order>0</sort_order>
</tourtab>
</tabs>
<sections>
<toursection translate="label" module="customoptioncreater">
<label>Tour Option Configuration</label>
<tab>tourtab</tab>
<frontend_type>text</frontend_type>
<sort_order>99999</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>

enter image description here

最佳答案

在您的代码中,您更改了 tourtab 的排序顺序。这将在第一个位置显示您的选项卡。

为了显示您想要的内容,请更改选项卡的排序顺序 <section> .

<tabs>
<tourtab translate="label" module="customoptioncreater">
<label>Tour Option Configuration</label>
<sort_order>0</sort_order>
</tourtab>
</tabs>
<sections>
<toursection translate="label" module="customoptioncreater">
<label>Tour Option Configuration</label>
<tab>tourtab</tab>
<frontend_type>text</frontend_type>
<sort_order>0</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>

现在,当您单击“系统”>“配置”时,您的游览选项配置选项卡将首先打开,甚至在 Mage 的默认常规选项卡及其部分之前打开

注意:您可以将排序顺序更改为 0 或 1。

关于magento - 打开系统配置时首先显示默认的自定义模块部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21331338/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com