如何在前端对Magento插件进行排序

时间:2015-10-28 07:06:04

标签: magento

我在前端有4个付款模块处于活动状态。 我想将模块ABC(现在排在第3位)排序为第一。

我尝试使用 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 个答案:

答案 0 :(得分:1)

试试这个,

Sub test()
    Dim fd As FileDialog, destFolder As FileDialog
    Dim s As FileDialogSelectedItems
    Set fd = Application.FileDialog(msoFileDialogFilePicker)
    fd.AllowMultiSelect = True
    fd.Show
    Set s = fd.SelectedItems ' s will be kept after next line
    Set destFolder = Application.FileDialog(msoFileDialogFolderPicker)
End Sub