2015-10-28 33 views
0

我在前端有四個支付模塊。 我想將模塊ABC(現在位於第三位)排序爲第一位。如何在前端對Magento插件進行排序

我嘗試下面的代碼在的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> 

但其移動到第二位置,而不是第一

回答

1

試試這個,

<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> 
+0

它的工作。我還發現我安裝最後一個獲得排序第一 –

相關問題