如何在前端将Magento插件排序为第一



我在前端有4个活跃的支付模块。我想把模块ABC(现在排名第三)排在第一位。

我在system.xml文件中尝试了以下代码

<label>Module ABC</label>
<frontend_type>text</frontend_type>
<sort_order>000</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>0</show_in_store>

但它正在移动到第二个位置,而不是第一个

试试这个,

<label>Module ABC</label>
<frontend_type>text</frontend_type>
<sort_order>000</sort_order>
<show_in_default>0</show_in_default>
<show_in_website>0</show_in_website>
<show_in_store>0</show_in_store>

最新更新