Magento Product custom attribute options not showing up in admin The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Product attribute with dynamic optionsNot seeing custom Product Attribute in Images TabMagento 2 : Custom Category Attribute not Showing in AdminCustomer EAV Attribute not Showing in AdminMagento 1.9 : Configurable Options not showing on product page IssueMagento 2: Disable custom product attribute editing?custom product attribute value not showing in admin in magento 1Custom multiselct product attribute not showing selected in adminMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?

When did F become S in typeography, and why?

Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?

How should I replace vector<uint8_t>::const_iterator in an API?

Can a 1st-level character have an ability score above 18?

Windows 10: How to Lock (not sleep) laptop on lid close?

How is simplicity better than precision and clarity in prose?

Who or what is the being for whom Being is a question for Heidegger?

What is this lever in Argentinian toilets?

Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?

What is special about square numbers here?

Match Roman Numerals

ELI5: Why do they say that Israel would have been the fourth country to land a spacecraft on the Moon and why do they call it low cost?

Are my PIs rude or am I just being too sensitive?

How do I add random spotting to the same face in cycles?

Did the new image of black hole confirm the general theory of relativity?

Can the DM override racial traits?

Can undead you have reanimated wait inside a portable hole?

How are presidential pardons supposed to be used?

What aspect of planet Earth must be changed to prevent the industrial revolution?

I could not break this equation. Please help me

how can a perfect fourth interval be considered either consonant or dissonant?

Make it rain characters

How to pronounce 1ターン?

Simulating Exploding Dice



Magento Product custom attribute options not showing up in admin



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Product attribute with dynamic optionsNot seeing custom Product Attribute in Images TabMagento 2 : Custom Category Attribute not Showing in AdminCustomer EAV Attribute not Showing in AdminMagento 1.9 : Configurable Options not showing on product page IssueMagento 2: Disable custom product attribute editing?custom product attribute value not showing in admin in magento 1Custom multiselct product attribute not showing selected in adminMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















In my Magento ce 1.9.2.1 website, I have created many product custom attributes by setup-upgrade scripts like below:



<?php
$installer = new Mage_Eav_Model_Entity_Setup('core_setup');

$installer->startSetup();

$installer->addAttributeGroup('catalog_product', 'Business Directory', 'Business Directory', 1000);

$attribute_set_id = $installer->getAttributeSetId('catalog_product', 'Business Directory');

$attribute_group_id = $installer->getAttributeGroupId('catalog_product', $attribute_set_id, 'Business Directory');

$installer->addAttribute('catalog_product', 'city', array(
'label' => 'City',
'type' => 'varchar',
'attribute_set' => 'Business Directory',
'input' => 'select',
'default' => '',
'backend' => 'eav/entity_attribute_backend_array',
'frontend' => '',
'source' => '',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'visible' => true,
'required' => false,
'user_defined' => true,
'searchable' => false,
'filterable' => '1',
'comparable' => false,
'visible_on_front' => false,
'visible_in_advanced_search' => false,
'unique' => false,
'option' => array (
0 => array("Please Select City...")
),
));

$installer->updateAttribute('catalog_product', 'city', 'is_filterable', 1);

$attribute_id = $installer->getAttributeId('catalog_product', 'city');

$installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

$installer->addAttribute('catalog_product', 'postcode', array(
'label' => 'Postcode',
'type' => 'varchar',
'attribute_set' => 'Business Directory',
'input' => 'select',
'default' => '',
'backend' => 'eav/entity_attribute_backend_array',
'frontend' => '',
'source' => '',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'visible' => true,
'required' => false,
'user_defined' => true,
'searchable' => false,
'filterable' => '1',
'comparable' => false,
'visible_on_front' => false,
'visible_in_advanced_search' => false,
'unique' => false,
'option' => array (
0 => array("Please Select Postcode...")
),
));

$installer->updateAttribute('catalog_product', 'postcode', 'is_filterable', 1);

$attribute_id = $installer->getAttributeId('catalog_product', 'postcode');

$installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

$installer->endSetup();

unset($installer);


As you can see, both the attributes are select(dropdown) and both have no values initially when they are created(this is my custom key criteria, empty attributes dropdown only).



But when I populate them programmatically from frontend form, their values doesn't show up in Admin >> Catalog >> Attributes in their forms. They still show no options in admin, why ?










share|improve this question
















bumped to the homepage by Community 7 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.





















    0















    In my Magento ce 1.9.2.1 website, I have created many product custom attributes by setup-upgrade scripts like below:



    <?php
    $installer = new Mage_Eav_Model_Entity_Setup('core_setup');

    $installer->startSetup();

    $installer->addAttributeGroup('catalog_product', 'Business Directory', 'Business Directory', 1000);

    $attribute_set_id = $installer->getAttributeSetId('catalog_product', 'Business Directory');

    $attribute_group_id = $installer->getAttributeGroupId('catalog_product', $attribute_set_id, 'Business Directory');

    $installer->addAttribute('catalog_product', 'city', array(
    'label' => 'City',
    'type' => 'varchar',
    'attribute_set' => 'Business Directory',
    'input' => 'select',
    'default' => '',
    'backend' => 'eav/entity_attribute_backend_array',
    'frontend' => '',
    'source' => '',
    'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
    'visible' => true,
    'required' => false,
    'user_defined' => true,
    'searchable' => false,
    'filterable' => '1',
    'comparable' => false,
    'visible_on_front' => false,
    'visible_in_advanced_search' => false,
    'unique' => false,
    'option' => array (
    0 => array("Please Select City...")
    ),
    ));

    $installer->updateAttribute('catalog_product', 'city', 'is_filterable', 1);

    $attribute_id = $installer->getAttributeId('catalog_product', 'city');

    $installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

    $installer->addAttribute('catalog_product', 'postcode', array(
    'label' => 'Postcode',
    'type' => 'varchar',
    'attribute_set' => 'Business Directory',
    'input' => 'select',
    'default' => '',
    'backend' => 'eav/entity_attribute_backend_array',
    'frontend' => '',
    'source' => '',
    'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
    'visible' => true,
    'required' => false,
    'user_defined' => true,
    'searchable' => false,
    'filterable' => '1',
    'comparable' => false,
    'visible_on_front' => false,
    'visible_in_advanced_search' => false,
    'unique' => false,
    'option' => array (
    0 => array("Please Select Postcode...")
    ),
    ));

    $installer->updateAttribute('catalog_product', 'postcode', 'is_filterable', 1);

    $attribute_id = $installer->getAttributeId('catalog_product', 'postcode');

    $installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

    $installer->endSetup();

    unset($installer);


    As you can see, both the attributes are select(dropdown) and both have no values initially when they are created(this is my custom key criteria, empty attributes dropdown only).



    But when I populate them programmatically from frontend form, their values doesn't show up in Admin >> Catalog >> Attributes in their forms. They still show no options in admin, why ?










    share|improve this question
















    bumped to the homepage by Community 7 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.

















      0












      0








      0








      In my Magento ce 1.9.2.1 website, I have created many product custom attributes by setup-upgrade scripts like below:



      <?php
      $installer = new Mage_Eav_Model_Entity_Setup('core_setup');

      $installer->startSetup();

      $installer->addAttributeGroup('catalog_product', 'Business Directory', 'Business Directory', 1000);

      $attribute_set_id = $installer->getAttributeSetId('catalog_product', 'Business Directory');

      $attribute_group_id = $installer->getAttributeGroupId('catalog_product', $attribute_set_id, 'Business Directory');

      $installer->addAttribute('catalog_product', 'city', array(
      'label' => 'City',
      'type' => 'varchar',
      'attribute_set' => 'Business Directory',
      'input' => 'select',
      'default' => '',
      'backend' => 'eav/entity_attribute_backend_array',
      'frontend' => '',
      'source' => '',
      'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
      'visible' => true,
      'required' => false,
      'user_defined' => true,
      'searchable' => false,
      'filterable' => '1',
      'comparable' => false,
      'visible_on_front' => false,
      'visible_in_advanced_search' => false,
      'unique' => false,
      'option' => array (
      0 => array("Please Select City...")
      ),
      ));

      $installer->updateAttribute('catalog_product', 'city', 'is_filterable', 1);

      $attribute_id = $installer->getAttributeId('catalog_product', 'city');

      $installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

      $installer->addAttribute('catalog_product', 'postcode', array(
      'label' => 'Postcode',
      'type' => 'varchar',
      'attribute_set' => 'Business Directory',
      'input' => 'select',
      'default' => '',
      'backend' => 'eav/entity_attribute_backend_array',
      'frontend' => '',
      'source' => '',
      'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
      'visible' => true,
      'required' => false,
      'user_defined' => true,
      'searchable' => false,
      'filterable' => '1',
      'comparable' => false,
      'visible_on_front' => false,
      'visible_in_advanced_search' => false,
      'unique' => false,
      'option' => array (
      0 => array("Please Select Postcode...")
      ),
      ));

      $installer->updateAttribute('catalog_product', 'postcode', 'is_filterable', 1);

      $attribute_id = $installer->getAttributeId('catalog_product', 'postcode');

      $installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

      $installer->endSetup();

      unset($installer);


      As you can see, both the attributes are select(dropdown) and both have no values initially when they are created(this is my custom key criteria, empty attributes dropdown only).



      But when I populate them programmatically from frontend form, their values doesn't show up in Admin >> Catalog >> Attributes in their forms. They still show no options in admin, why ?










      share|improve this question
















      In my Magento ce 1.9.2.1 website, I have created many product custom attributes by setup-upgrade scripts like below:



      <?php
      $installer = new Mage_Eav_Model_Entity_Setup('core_setup');

      $installer->startSetup();

      $installer->addAttributeGroup('catalog_product', 'Business Directory', 'Business Directory', 1000);

      $attribute_set_id = $installer->getAttributeSetId('catalog_product', 'Business Directory');

      $attribute_group_id = $installer->getAttributeGroupId('catalog_product', $attribute_set_id, 'Business Directory');

      $installer->addAttribute('catalog_product', 'city', array(
      'label' => 'City',
      'type' => 'varchar',
      'attribute_set' => 'Business Directory',
      'input' => 'select',
      'default' => '',
      'backend' => 'eav/entity_attribute_backend_array',
      'frontend' => '',
      'source' => '',
      'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
      'visible' => true,
      'required' => false,
      'user_defined' => true,
      'searchable' => false,
      'filterable' => '1',
      'comparable' => false,
      'visible_on_front' => false,
      'visible_in_advanced_search' => false,
      'unique' => false,
      'option' => array (
      0 => array("Please Select City...")
      ),
      ));

      $installer->updateAttribute('catalog_product', 'city', 'is_filterable', 1);

      $attribute_id = $installer->getAttributeId('catalog_product', 'city');

      $installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

      $installer->addAttribute('catalog_product', 'postcode', array(
      'label' => 'Postcode',
      'type' => 'varchar',
      'attribute_set' => 'Business Directory',
      'input' => 'select',
      'default' => '',
      'backend' => 'eav/entity_attribute_backend_array',
      'frontend' => '',
      'source' => '',
      'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
      'visible' => true,
      'required' => false,
      'user_defined' => true,
      'searchable' => false,
      'filterable' => '1',
      'comparable' => false,
      'visible_on_front' => false,
      'visible_in_advanced_search' => false,
      'unique' => false,
      'option' => array (
      0 => array("Please Select Postcode...")
      ),
      ));

      $installer->updateAttribute('catalog_product', 'postcode', 'is_filterable', 1);

      $attribute_id = $installer->getAttributeId('catalog_product', 'postcode');

      $installer->addAttributeToSet($entityTypeId = 'catalog_product', $attribute_set_id, $attribute_group_id, $attribute_id);

      $installer->endSetup();

      unset($installer);


      As you can see, both the attributes are select(dropdown) and both have no values initially when they are created(this is my custom key criteria, empty attributes dropdown only).



      But when I populate them programmatically from frontend form, their values doesn't show up in Admin >> Catalog >> Attributes in their forms. They still show no options in admin, why ?







      admin product-attribute custom ce-1.9.2.1






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 26 '17 at 8:37









      Teja Bhagavan Kollepara

      2,99341949




      2,99341949










      asked Jan 6 '16 at 16:55









      Vicky DevVicky Dev

      1,28761539




      1,28761539





      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















          2 Answers
          2






          active

          oldest

          votes


















          0














          Replace



          'option' => array (
          0 => array("Please Select City...")
          ),


          to



          'option' => array (
          'values' => array(
          0 => array("Please Select City...")
          )
          ),





          share|improve this answer























          • Btw, you also should replace 'type' => 'varchar' to 'type' => 'int'

            – Igor
            Jan 6 '16 at 17:37











          • Did that but still it doesn't add new options or updates existing ones in backend from frontend form.

            – Vicky Dev
            Jan 7 '16 at 6:37











          • You cannot add attribute options from frontend. If "Please Select City..." didn't appear as attribute's value, then you should remove that install script and run it again

            – Igor
            Jan 7 '16 at 10:35











          • I ran it three times already, but no luck adding from frontend.

            – Vicky Dev
            Jan 7 '16 at 10:40











          • You are trying to add new value (which previously never existed in attribute's options), right? If so, it is wrong. You can't add new value from frontend. You can just set one of already existing values to one of products

            – Igor
            Jan 7 '16 at 11:36


















          0














          You have to assign product attribute in group



          $setup->addAttribute('catalog_product', "price_status", array(
          'group' => 'Group Name', //you can also use "General"
          'type' => 'int',
          'input' => 'select',
          'label' => 'Allow check price ?',
          'visible' => 1,
          'sort_order' => 10,
          'visible' => 1,
          'required' => 0,
          'user_defined' => 1,
          'searchable' => 0,
          'filterable' => 0,
          'comparable' => 0,
          'visible_on_front' => 0,
          'visible_in_advanced_search' => 0,
          'is_html_allowed_on_front' => 0,
          'is_configurable' => 1,
          'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
          'backend' => 'eav/entity_attribute_backend_array',
          'option' => array (
          'values' => array(
          0 => 'No',
          1 => 'Yes',
          )
          ),


          May be it will help you.






          share|improve this answer

























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "479"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f96211%2fmagento-product-custom-attribute-options-not-showing-up-in-admin%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Replace



            'option' => array (
            0 => array("Please Select City...")
            ),


            to



            'option' => array (
            'values' => array(
            0 => array("Please Select City...")
            )
            ),





            share|improve this answer























            • Btw, you also should replace 'type' => 'varchar' to 'type' => 'int'

              – Igor
              Jan 6 '16 at 17:37











            • Did that but still it doesn't add new options or updates existing ones in backend from frontend form.

              – Vicky Dev
              Jan 7 '16 at 6:37











            • You cannot add attribute options from frontend. If "Please Select City..." didn't appear as attribute's value, then you should remove that install script and run it again

              – Igor
              Jan 7 '16 at 10:35











            • I ran it three times already, but no luck adding from frontend.

              – Vicky Dev
              Jan 7 '16 at 10:40











            • You are trying to add new value (which previously never existed in attribute's options), right? If so, it is wrong. You can't add new value from frontend. You can just set one of already existing values to one of products

              – Igor
              Jan 7 '16 at 11:36















            0














            Replace



            'option' => array (
            0 => array("Please Select City...")
            ),


            to



            'option' => array (
            'values' => array(
            0 => array("Please Select City...")
            )
            ),





            share|improve this answer























            • Btw, you also should replace 'type' => 'varchar' to 'type' => 'int'

              – Igor
              Jan 6 '16 at 17:37











            • Did that but still it doesn't add new options or updates existing ones in backend from frontend form.

              – Vicky Dev
              Jan 7 '16 at 6:37











            • You cannot add attribute options from frontend. If "Please Select City..." didn't appear as attribute's value, then you should remove that install script and run it again

              – Igor
              Jan 7 '16 at 10:35











            • I ran it three times already, but no luck adding from frontend.

              – Vicky Dev
              Jan 7 '16 at 10:40











            • You are trying to add new value (which previously never existed in attribute's options), right? If so, it is wrong. You can't add new value from frontend. You can just set one of already existing values to one of products

              – Igor
              Jan 7 '16 at 11:36













            0












            0








            0







            Replace



            'option' => array (
            0 => array("Please Select City...")
            ),


            to



            'option' => array (
            'values' => array(
            0 => array("Please Select City...")
            )
            ),





            share|improve this answer













            Replace



            'option' => array (
            0 => array("Please Select City...")
            ),


            to



            'option' => array (
            'values' => array(
            0 => array("Please Select City...")
            )
            ),






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jan 6 '16 at 17:24









            IgorIgor

            1112




            1112












            • Btw, you also should replace 'type' => 'varchar' to 'type' => 'int'

              – Igor
              Jan 6 '16 at 17:37











            • Did that but still it doesn't add new options or updates existing ones in backend from frontend form.

              – Vicky Dev
              Jan 7 '16 at 6:37











            • You cannot add attribute options from frontend. If "Please Select City..." didn't appear as attribute's value, then you should remove that install script and run it again

              – Igor
              Jan 7 '16 at 10:35











            • I ran it three times already, but no luck adding from frontend.

              – Vicky Dev
              Jan 7 '16 at 10:40











            • You are trying to add new value (which previously never existed in attribute's options), right? If so, it is wrong. You can't add new value from frontend. You can just set one of already existing values to one of products

              – Igor
              Jan 7 '16 at 11:36

















            • Btw, you also should replace 'type' => 'varchar' to 'type' => 'int'

              – Igor
              Jan 6 '16 at 17:37











            • Did that but still it doesn't add new options or updates existing ones in backend from frontend form.

              – Vicky Dev
              Jan 7 '16 at 6:37











            • You cannot add attribute options from frontend. If "Please Select City..." didn't appear as attribute's value, then you should remove that install script and run it again

              – Igor
              Jan 7 '16 at 10:35











            • I ran it three times already, but no luck adding from frontend.

              – Vicky Dev
              Jan 7 '16 at 10:40











            • You are trying to add new value (which previously never existed in attribute's options), right? If so, it is wrong. You can't add new value from frontend. You can just set one of already existing values to one of products

              – Igor
              Jan 7 '16 at 11:36
















            Btw, you also should replace 'type' => 'varchar' to 'type' => 'int'

            – Igor
            Jan 6 '16 at 17:37





            Btw, you also should replace 'type' => 'varchar' to 'type' => 'int'

            – Igor
            Jan 6 '16 at 17:37













            Did that but still it doesn't add new options or updates existing ones in backend from frontend form.

            – Vicky Dev
            Jan 7 '16 at 6:37





            Did that but still it doesn't add new options or updates existing ones in backend from frontend form.

            – Vicky Dev
            Jan 7 '16 at 6:37













            You cannot add attribute options from frontend. If "Please Select City..." didn't appear as attribute's value, then you should remove that install script and run it again

            – Igor
            Jan 7 '16 at 10:35





            You cannot add attribute options from frontend. If "Please Select City..." didn't appear as attribute's value, then you should remove that install script and run it again

            – Igor
            Jan 7 '16 at 10:35













            I ran it three times already, but no luck adding from frontend.

            – Vicky Dev
            Jan 7 '16 at 10:40





            I ran it three times already, but no luck adding from frontend.

            – Vicky Dev
            Jan 7 '16 at 10:40













            You are trying to add new value (which previously never existed in attribute's options), right? If so, it is wrong. You can't add new value from frontend. You can just set one of already existing values to one of products

            – Igor
            Jan 7 '16 at 11:36





            You are trying to add new value (which previously never existed in attribute's options), right? If so, it is wrong. You can't add new value from frontend. You can just set one of already existing values to one of products

            – Igor
            Jan 7 '16 at 11:36













            0














            You have to assign product attribute in group



            $setup->addAttribute('catalog_product', "price_status", array(
            'group' => 'Group Name', //you can also use "General"
            'type' => 'int',
            'input' => 'select',
            'label' => 'Allow check price ?',
            'visible' => 1,
            'sort_order' => 10,
            'visible' => 1,
            'required' => 0,
            'user_defined' => 1,
            'searchable' => 0,
            'filterable' => 0,
            'comparable' => 0,
            'visible_on_front' => 0,
            'visible_in_advanced_search' => 0,
            'is_html_allowed_on_front' => 0,
            'is_configurable' => 1,
            'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
            'backend' => 'eav/entity_attribute_backend_array',
            'option' => array (
            'values' => array(
            0 => 'No',
            1 => 'Yes',
            )
            ),


            May be it will help you.






            share|improve this answer





























              0














              You have to assign product attribute in group



              $setup->addAttribute('catalog_product', "price_status", array(
              'group' => 'Group Name', //you can also use "General"
              'type' => 'int',
              'input' => 'select',
              'label' => 'Allow check price ?',
              'visible' => 1,
              'sort_order' => 10,
              'visible' => 1,
              'required' => 0,
              'user_defined' => 1,
              'searchable' => 0,
              'filterable' => 0,
              'comparable' => 0,
              'visible_on_front' => 0,
              'visible_in_advanced_search' => 0,
              'is_html_allowed_on_front' => 0,
              'is_configurable' => 1,
              'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
              'backend' => 'eav/entity_attribute_backend_array',
              'option' => array (
              'values' => array(
              0 => 'No',
              1 => 'Yes',
              )
              ),


              May be it will help you.






              share|improve this answer



























                0












                0








                0







                You have to assign product attribute in group



                $setup->addAttribute('catalog_product', "price_status", array(
                'group' => 'Group Name', //you can also use "General"
                'type' => 'int',
                'input' => 'select',
                'label' => 'Allow check price ?',
                'visible' => 1,
                'sort_order' => 10,
                'visible' => 1,
                'required' => 0,
                'user_defined' => 1,
                'searchable' => 0,
                'filterable' => 0,
                'comparable' => 0,
                'visible_on_front' => 0,
                'visible_in_advanced_search' => 0,
                'is_html_allowed_on_front' => 0,
                'is_configurable' => 1,
                'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
                'backend' => 'eav/entity_attribute_backend_array',
                'option' => array (
                'values' => array(
                0 => 'No',
                1 => 'Yes',
                )
                ),


                May be it will help you.






                share|improve this answer















                You have to assign product attribute in group



                $setup->addAttribute('catalog_product', "price_status", array(
                'group' => 'Group Name', //you can also use "General"
                'type' => 'int',
                'input' => 'select',
                'label' => 'Allow check price ?',
                'visible' => 1,
                'sort_order' => 10,
                'visible' => 1,
                'required' => 0,
                'user_defined' => 1,
                'searchable' => 0,
                'filterable' => 0,
                'comparable' => 0,
                'visible_on_front' => 0,
                'visible_in_advanced_search' => 0,
                'is_html_allowed_on_front' => 0,
                'is_configurable' => 1,
                'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
                'backend' => 'eav/entity_attribute_backend_array',
                'option' => array (
                'values' => array(
                0 => 'No',
                1 => 'Yes',
                )
                ),


                May be it will help you.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 16 '16 at 6:28

























                answered Nov 15 '16 at 12:07









                chiragchirag

                2,1711830




                2,1711830



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Magento Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f96211%2fmagento-product-custom-attribute-options-not-showing-up-in-admin%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    کانن (شرکت) محتویات تاریخچه[ویرایش] بخشی از تولیدات موفق این شرکت[ویرایش] در رده APS-C[ویرایش] گزارش محیط زیست[ویرایش] رده‌بندی محصولات[ویرایش] منابع[ویرایش] پانویس[ویرایش] پیوند به بیرون[ویرایش] منوی ناوبریwww.canon.comموزه آنلاین دوربین‌های کانننمودار تاریخچه سهام کاننوبگاه رسمی شرکت کاننوووووIDC Worldwide Hardcopy 2013

                    Rest API with Magento using PHP with example. Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How to update product using magento client library for PHP?Oauth Error while extending Magento Rest APINot showing my custom api in wsdl(url) and web service list?Using Magento API(REST) via IXMLHTTPRequest COM ObjectHow to login in Magento website using REST APIREST api call for Guest userMagento API calling using HTML and javascriptUse API rest media management by storeView code (admin)Magento REST API Example ErrorsHow to log all rest api calls in magento2?How to update product using magento client library for PHP?

                    Magento 2 - Auto login with specific URL Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Customer can't login - Page refreshes but nothing happensCustom Login page redirectURL to login with redirect URL after completionCustomer login is case sensitiveLogin with phone number or email address - Magento 1.9Magento 2: Set Customer Account Confirmation StatusCustomer auto connect from URLHow to call customer login form in the custom module action magento 2?Change of customer login error message magento2Referrer URL in modal login form