1

I'm getting this error when going to a custom extension's (IWD_Opc) admin configuration page.

Undefined index: label in .../vendor/magento/framework/Data/Form/Element/Select.php on line 68

Any ideas what this error means or how to go about fixing it?

Using Magento 2.2.2.

This seems to be connected with /etc/adminhtml/system.xml with one of the fields, still not sure which one or why this is happening...

EDIT

It's connected with a new custom payment method and the system config field:

<field id="default_payment_method" translate="label" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
 <label>Default Payment Method</label>
 <source_model>IWD\Opc\Model\Config\Source\Payment</source_model>
</field>

Model code is:

use Magento\Payment\Model\Config\Source\Allmethods;
class Payment extends Allmethods
{
 public function toOptionArray()
 {
 $options = parent::toOptionArray();
 array_unshift($options, ['value' => '', 'label' => '-- Please select a payment method --']);
 return $options;
 }
}

So I presume that my custom payment method is not registered properly to be included in the Allmethods class?

sv3n
11.7k7 gold badges44 silver badges75 bronze badges
asked Jan 26, 2018 at 11:55

1 Answer 1

6

Was just a typo in my custom payment method's /etc/config.xml

<group>Offline</group>

Should be

<group>offline</group>
answered Jan 26, 2018 at 13:27
3
  • the capital letter was the issue? Commented Jan 3, 2020 at 10:05
  • @jibingeorge Yes. It seems it is case sensitive. Commented Jan 3, 2020 at 11:46
  • Thanks @Lez, You saved my day. ! Commented Jul 5, 2022 at 13:48

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.