Magento 1.9.4.2 Custom Module Adminhtml does not return with the values!Magento 1.9 getting Authorize.Net return valuesSearch does not return resultsMagento custom module with custom database table admin pageGetting Price of Custom Option that does not have valuesAdminhtml grid does not displayCustom module does not display in pageMagento 1 : Adminhtml block not called in my custom moduleOverride custom module adminhtml blockMagento - Add customer attribute to order gridModule does not display custom settings, magento 1.9

Is Norway in the Single Market?

speaker impedence

A small reformulation of the Cosmological Argument

Is the EU really banning "toxic propellants" in 2020? How is that going to work?

How to power down external drive safely

How do I solve such questions on paramagnetism and ferromagnetism?

Who's behind community AMIs on Amazon EC2?

Applying for FHA mortgage when living together but only one will be on the mortgage, no savings

What's the term for a group of people who enjoy literary works?

Can't understand an ACT practice problem: Triangle appears to be isosceles, why isn't the answer 7.3~ here?

Being told my "network" isn't PCI compliant. I don't even have a server! Do I have to comply?

Word to describe someone doing something even though told not to

Why are Star Wars Rebel Alliance ships named after letters from the Latin alphabet?

How do I safety check that there is no light in Darkroom / Darkbag?

Does the use of a new concept require a prior definition?

How to avoid a lengthy conversation with someone from the neighborhood I don't share interests with

How do people drown while wearing a life jacket?

Is Sneak Attack damage halved on a successful Will save if a Wand of Cure Light Wounds is used to trigger the Sneak Attack?

Why do we need a voltage divider when we get the same voltage at the output as the input?

How do I respond appropriately to an overseas company that obtained a visa for me without hiring me?

Should I take up a Creative Writing online course?

Export economy of Mars

Feedback diagram

On the expression " sun-down"



Magento 1.9.4.2 Custom Module Adminhtml does not return with the values!


Magento 1.9 getting Authorize.Net return valuesSearch does not return resultsMagento custom module with custom database table admin pageGetting Price of Custom Option that does not have valuesAdminhtml grid does not displayCustom module does not display in pageMagento 1 : Adminhtml block not called in my custom moduleOverride custom module adminhtml blockMagento - Add customer attribute to order gridModule does not display custom settings, magento 1.9






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








0















Not sure what is the problem, but once I log out and log in all the values I added and saves successfully and confirmed via DB does not populate for me to edit it!?



<?xml version="1.0"?>

<config>
<tabs>
<custom translate="label" module="custom_core">
<label>Custom Module</label>
<sort_order>99999</sort_order>
</custom>
</tabs>
<sections>
<custom_essentials translate="label" module="custom_core">
<label>Essential Configurations</label>
<tab>custom</tab>
<sort_order>1</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<groups>
<promotional_bar translate="label" module="custom_core">
<label>Promotional Bar</label>
<sort_order>10</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<fields>
<promotional_text>
<label>Promotional Text</label>
<frontend_type>text</frontend_type>
<sort_order>1</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<!-- Specific backend class to handle serialized data -->
<backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
<!-- Specific frontend class to render custom field -->
<frontend_model>custom_core/adminhtml_promotionalBar</frontend_model>
</promotional_text>
</fields>
</promotional_bar>
</groups>
</custom_essentials>
</sections>
</config>


And here is the adminhtml block



<?php

class Custom_Core_Block_Adminhtml_PromotionalBar extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract

/**
* Add custom config field columns, set template, add values.
*/
public function __construct()

$helper = Mage::helper('custom_core/essentials');

$this->addColumn('text', array(
'style' => 'width:200px',
'label' => $helper->__('Text'),
));

$this->addColumn('link', array(
'style' => 'width:200px',
'label' => $helper->__('Link To'),
));

parent::__construct();











share|improve this question






























    0















    Not sure what is the problem, but once I log out and log in all the values I added and saves successfully and confirmed via DB does not populate for me to edit it!?



    <?xml version="1.0"?>

    <config>
    <tabs>
    <custom translate="label" module="custom_core">
    <label>Custom Module</label>
    <sort_order>99999</sort_order>
    </custom>
    </tabs>
    <sections>
    <custom_essentials translate="label" module="custom_core">
    <label>Essential Configurations</label>
    <tab>custom</tab>
    <sort_order>1</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
    <groups>
    <promotional_bar translate="label" module="custom_core">
    <label>Promotional Bar</label>
    <sort_order>10</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
    <fields>
    <promotional_text>
    <label>Promotional Text</label>
    <frontend_type>text</frontend_type>
    <sort_order>1</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
    <!-- Specific backend class to handle serialized data -->
    <backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
    <!-- Specific frontend class to render custom field -->
    <frontend_model>custom_core/adminhtml_promotionalBar</frontend_model>
    </promotional_text>
    </fields>
    </promotional_bar>
    </groups>
    </custom_essentials>
    </sections>
    </config>


    And here is the adminhtml block



    <?php

    class Custom_Core_Block_Adminhtml_PromotionalBar extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract

    /**
    * Add custom config field columns, set template, add values.
    */
    public function __construct()

    $helper = Mage::helper('custom_core/essentials');

    $this->addColumn('text', array(
    'style' => 'width:200px',
    'label' => $helper->__('Text'),
    ));

    $this->addColumn('link', array(
    'style' => 'width:200px',
    'label' => $helper->__('Link To'),
    ));

    parent::__construct();











    share|improve this question


























      0












      0








      0








      Not sure what is the problem, but once I log out and log in all the values I added and saves successfully and confirmed via DB does not populate for me to edit it!?



      <?xml version="1.0"?>

      <config>
      <tabs>
      <custom translate="label" module="custom_core">
      <label>Custom Module</label>
      <sort_order>99999</sort_order>
      </custom>
      </tabs>
      <sections>
      <custom_essentials translate="label" module="custom_core">
      <label>Essential Configurations</label>
      <tab>custom</tab>
      <sort_order>1</sort_order>
      <show_in_default>1</show_in_default>
      <show_in_website>1</show_in_website>
      <show_in_store>1</show_in_store>
      <groups>
      <promotional_bar translate="label" module="custom_core">
      <label>Promotional Bar</label>
      <sort_order>10</sort_order>
      <show_in_default>1</show_in_default>
      <show_in_website>1</show_in_website>
      <show_in_store>1</show_in_store>
      <fields>
      <promotional_text>
      <label>Promotional Text</label>
      <frontend_type>text</frontend_type>
      <sort_order>1</sort_order>
      <show_in_default>1</show_in_default>
      <show_in_website>1</show_in_website>
      <show_in_store>1</show_in_store>
      <!-- Specific backend class to handle serialized data -->
      <backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
      <!-- Specific frontend class to render custom field -->
      <frontend_model>custom_core/adminhtml_promotionalBar</frontend_model>
      </promotional_text>
      </fields>
      </promotional_bar>
      </groups>
      </custom_essentials>
      </sections>
      </config>


      And here is the adminhtml block



      <?php

      class Custom_Core_Block_Adminhtml_PromotionalBar extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract

      /**
      * Add custom config field columns, set template, add values.
      */
      public function __construct()

      $helper = Mage::helper('custom_core/essentials');

      $this->addColumn('text', array(
      'style' => 'width:200px',
      'label' => $helper->__('Text'),
      ));

      $this->addColumn('link', array(
      'style' => 'width:200px',
      'label' => $helper->__('Link To'),
      ));

      parent::__construct();











      share|improve this question














      Not sure what is the problem, but once I log out and log in all the values I added and saves successfully and confirmed via DB does not populate for me to edit it!?



      <?xml version="1.0"?>

      <config>
      <tabs>
      <custom translate="label" module="custom_core">
      <label>Custom Module</label>
      <sort_order>99999</sort_order>
      </custom>
      </tabs>
      <sections>
      <custom_essentials translate="label" module="custom_core">
      <label>Essential Configurations</label>
      <tab>custom</tab>
      <sort_order>1</sort_order>
      <show_in_default>1</show_in_default>
      <show_in_website>1</show_in_website>
      <show_in_store>1</show_in_store>
      <groups>
      <promotional_bar translate="label" module="custom_core">
      <label>Promotional Bar</label>
      <sort_order>10</sort_order>
      <show_in_default>1</show_in_default>
      <show_in_website>1</show_in_website>
      <show_in_store>1</show_in_store>
      <fields>
      <promotional_text>
      <label>Promotional Text</label>
      <frontend_type>text</frontend_type>
      <sort_order>1</sort_order>
      <show_in_default>1</show_in_default>
      <show_in_website>1</show_in_website>
      <show_in_store>1</show_in_store>
      <!-- Specific backend class to handle serialized data -->
      <backend_model>adminhtml/system_config_backend_serialized_array</backend_model>
      <!-- Specific frontend class to render custom field -->
      <frontend_model>custom_core/adminhtml_promotionalBar</frontend_model>
      </promotional_text>
      </fields>
      </promotional_bar>
      </groups>
      </custom_essentials>
      </sections>
      </config>


      And here is the adminhtml block



      <?php

      class Custom_Core_Block_Adminhtml_PromotionalBar extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract

      /**
      * Add custom config field columns, set template, add values.
      */
      public function __construct()

      $helper = Mage::helper('custom_core/essentials');

      $this->addColumn('text', array(
      'style' => 'width:200px',
      'label' => $helper->__('Text'),
      ));

      $this->addColumn('link', array(
      'style' => 'width:200px',
      'label' => $helper->__('Link To'),
      ));

      parent::__construct();








      magento-1.9 php






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 24 at 8:37









      Ibrahim SIbrahim S

      163 bronze badges




      163 bronze badges























          0






          active

          oldest

          votes














          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%2f283117%2fmagento-1-9-4-2-custom-module-adminhtml-does-not-return-with-the-values%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f283117%2fmagento-1-9-4-2-custom-module-adminhtml-does-not-return-with-the-values%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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form