How to add newsletter subscription in customer grid in admin 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?Show coupon code in newsletter subscription success messageHow to activate newsletter under new customer page in admin panel?Magento newsletter queue grid recipients columnSorting and filtering not working with custom column in Customer Grid MagentoHow Add dynamic coupon code at Newsletter subscriptionsShow global messages of newsletter subscription in popupHow to add Add frontend product url column to admin product gridnewsletter need to confirm disabled but unconfirmed from new account formHow to save newsletter subscription status?Magento : customer place order and not subscribe to newsletter subscription

Why does it sometimes sound good to play a grace note as a lead in to a note in a melody?

What does Turing mean by this statement?

If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

How many time has Arya actually used Needle?

Did any compiler fully use 80-bit floating point?

How does the math work when buying airline miles?

Putting class ranking in CV, but against dept guidelines

As Singapore Airlines (Krisflyer) Gold, can I bring my family into the lounge on a domestic Virgin Australia flight?

The Nth Gryphon Number

Does the Mueller report show a conspiracy between Russia and the Trump Campaign?

Why do early math courses focus on the cross sections of a cone and not on other 3D objects?

What is the difference between a "ranged attack" and a "ranged weapon attack"?

How can I set the aperture on my DSLR when it's attached to a telescope instead of a lens?

What does 丫 mean? 丫是什么意思?

Karn the great creator - 'card from outside the game' in sealed

If the probability of a dog barking one or more times in a given hour is 84%, then what is the probability of a dog barking in 30 minutes?

Random body shuffle every night—can we still function?

Drawing spherical mirrors

What does it mean that physics no longer uses mechanical models to describe phenomena?

Project Euler #1 in C++

How does Belgium enforce obligatory attendance in elections?

Tannaka duality for semisimple groups

Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode



How to add newsletter subscription in customer grid in admin



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?Show coupon code in newsletter subscription success messageHow to activate newsletter under new customer page in admin panel?Magento newsletter queue grid recipients columnSorting and filtering not working with custom column in Customer Grid MagentoHow Add dynamic coupon code at Newsletter subscriptionsShow global messages of newsletter subscription in popupHow to add Add frontend product url column to admin product gridnewsletter need to confirm disabled but unconfirmed from new account formHow to save newsletter subscription status?Magento : customer place order and not subscribe to newsletter subscription



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








6















How to add newsletter subscription in customer grid in admin?



If customer is subscribed newsletter then it should show subscribed/unsubscribed status in column.



I rewrite the module in my local folder










share|improve this question






























    6















    How to add newsletter subscription in customer grid in admin?



    If customer is subscribed newsletter then it should show subscribed/unsubscribed status in column.



    I rewrite the module in my local folder










    share|improve this question


























      6












      6








      6








      How to add newsletter subscription in customer grid in admin?



      If customer is subscribed newsletter then it should show subscribed/unsubscribed status in column.



      I rewrite the module in my local folder










      share|improve this question
















      How to add newsletter subscription in customer grid in admin?



      If customer is subscribed newsletter then it should show subscribed/unsubscribed status in column.



      I rewrite the module in my local folder







      magento-1.9






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 23 '18 at 9:56









      Teja Bhagavan Kollepara

      2,99241949




      2,99241949










      asked Jun 5 '15 at 5:24









      magento12345magento12345

      171217




      171217




















          1 Answer
          1






          active

          oldest

          votes


















          0














          here i guess if you successful add grid in customer grid you can try to use renderer



          like below



          class Namespace_Yourmodule_Block_Customerrenderer extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract

          public function render(Varien_Object $row)

          $customerId = $row->getId(); // get customer id here

          $subscriber = Mage::getModel('newsletter/subscriber')->load($customerId);
          if ($subscriber->getId())
          return "subscribed";

          return "unsubscribe";




          call rendere in your attach column grid like below



          $this->addColumn('newsletter_subscribe', array(
          'header' => $this->__('newsletter subscribe'),
          'align' => 'center',
          'renderer' => 'Namespace_Yourmodule_Block_Customerrenderer'
          ));


          i am sure it will worth for you. its just idea not whole code.






          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%2f70102%2fhow-to-add-newsletter-subscription-in-customer-grid-in-admin%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            here i guess if you successful add grid in customer grid you can try to use renderer



            like below



            class Namespace_Yourmodule_Block_Customerrenderer extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract

            public function render(Varien_Object $row)

            $customerId = $row->getId(); // get customer id here

            $subscriber = Mage::getModel('newsletter/subscriber')->load($customerId);
            if ($subscriber->getId())
            return "subscribed";

            return "unsubscribe";




            call rendere in your attach column grid like below



            $this->addColumn('newsletter_subscribe', array(
            'header' => $this->__('newsletter subscribe'),
            'align' => 'center',
            'renderer' => 'Namespace_Yourmodule_Block_Customerrenderer'
            ));


            i am sure it will worth for you. its just idea not whole code.






            share|improve this answer





























              0














              here i guess if you successful add grid in customer grid you can try to use renderer



              like below



              class Namespace_Yourmodule_Block_Customerrenderer extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract

              public function render(Varien_Object $row)

              $customerId = $row->getId(); // get customer id here

              $subscriber = Mage::getModel('newsletter/subscriber')->load($customerId);
              if ($subscriber->getId())
              return "subscribed";

              return "unsubscribe";




              call rendere in your attach column grid like below



              $this->addColumn('newsletter_subscribe', array(
              'header' => $this->__('newsletter subscribe'),
              'align' => 'center',
              'renderer' => 'Namespace_Yourmodule_Block_Customerrenderer'
              ));


              i am sure it will worth for you. its just idea not whole code.






              share|improve this answer



























                0












                0








                0







                here i guess if you successful add grid in customer grid you can try to use renderer



                like below



                class Namespace_Yourmodule_Block_Customerrenderer extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract

                public function render(Varien_Object $row)

                $customerId = $row->getId(); // get customer id here

                $subscriber = Mage::getModel('newsletter/subscriber')->load($customerId);
                if ($subscriber->getId())
                return "subscribed";

                return "unsubscribe";




                call rendere in your attach column grid like below



                $this->addColumn('newsletter_subscribe', array(
                'header' => $this->__('newsletter subscribe'),
                'align' => 'center',
                'renderer' => 'Namespace_Yourmodule_Block_Customerrenderer'
                ));


                i am sure it will worth for you. its just idea not whole code.






                share|improve this answer















                here i guess if you successful add grid in customer grid you can try to use renderer



                like below



                class Namespace_Yourmodule_Block_Customerrenderer extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract

                public function render(Varien_Object $row)

                $customerId = $row->getId(); // get customer id here

                $subscriber = Mage::getModel('newsletter/subscriber')->load($customerId);
                if ($subscriber->getId())
                return "subscribed";

                return "unsubscribe";




                call rendere in your attach column grid like below



                $this->addColumn('newsletter_subscribe', array(
                'header' => $this->__('newsletter subscribe'),
                'align' => 'center',
                'renderer' => 'Namespace_Yourmodule_Block_Customerrenderer'
                ));


                i am sure it will worth for you. its just idea not whole code.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Feb 19 '18 at 21:37









                sv3n

                10k62557




                10k62557










                answered Jun 5 '15 at 5:59









                liyakatliyakat

                3,62062033




                3,62062033



























                    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%2f70102%2fhow-to-add-newsletter-subscription-in-customer-grid-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

                    Sum ergo cogito? 1 nng

                    419 nièngy_Soadمي 19bal1.5o_g

                    Queiggey Chernihivv 9NnOo i Zw X QqKk LpB