abdul rashid
abdul rashid

Reputation: 750

How to sort a Magento Plugin to first in Frontend

I have 4 payment modules active in Frontend. I want to sort Module ABC (Now in 3rd position) to be first.

I tried following code in system.xml file

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

But its moving to second position, not first

Upvotes: 0

Views: 28

Answers (1)

Shivananda Chary
Shivananda Chary

Reputation: 565

Try this,

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

Upvotes: 1

Related Questions