Can't see “alert_urls” block templatewhat should be in type attribute of blockGet notified by just...

What was the Kree's motivation in Captain Marvel?

Are tamper resistant receptacles really safer?

List elements digit difference sort

Single word request: Harming the benefactor

Motivation for Zeta Function of an Algebraic Variety

How to write ı (i without dot) character in pgf-pie

How can I get players to stop ignoring or overlooking the plot hooks I'm giving them?

Reverse string, can I make it faster?

How to detect if C code (which needs 'extern C') is compiled in C++

Declaring and defining template, and specialising them

Good for you! in Russian

NASA's RS-25 Engines shut down time

Do items de-spawn in Diablo?

Latex does not go to next line

meaning and function of 幸 in "则幸分我一杯羹"

How to secure an aircraft at a transient parking space?

How do I express some one as a black person?

Accepted offer letter, position changed

Virginia employer terminated employee and wants signing bonus returned

How does NOW work?

Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?

PTIJ: wiping amalek’s memory?

Doesn't allowing a user mode program to access kernel space memory and execute the IN and OUT instructions defeat the purpose of having CPU modes?

In the late 1940’s to early 1950’s what technology was available that could melt a LOT of ice?



Can't see “alert_urls” block template


what should be in type attribute of blockGet notified by just mailCan't override Magento Adminhtml BlockCron job template block not being translated, but testObserver isAdd template block into another templateCan't load a custom template through getChildHtmlCan't call a block on template email magento after install the security patch 6788Layouts and modulesCan't see specific order magento on admin after supee-7405How to only show products from a specific category?













2















In my project, what I did is copied all the layouts and template files of base/default to my new theme folder default/efk.



After that, I made many changes in some layout and template files as needed.



My project is somewhat different from the default magento. In my project, I have configurable products in which each consists of 3 types of simple products.



Now, if any of the single simple product is out of stock, then I need to show "Sign up to get notified when this product is back in stock" as shown in default magento.



When I did some research I figured it out that this link is coming from the phtml line



<?php echo $this->getChildHtml('alert_urls') ?>


I added the same line in my project in template/catalog/product/view.phtml, but I can't see the "Sign up to get notified when this product is back in stock".



PS: The reference of the block "alert_urls" are not changed. They are same as they are in default magento but in my theme folder instead.



EDIT:



The flow as I understand magento is as follows:



layout/catalog.xml (the block location)



    <catalog_product_view translate="label">
<reference name="content">
<block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
<block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
<label>Alert Urls</label>
</block>

//some other blocks


layout/productalert.xml (the block reference location)



<layout version="0.1.0">
<catalog_product_view>
<reference name="content">
<reference name="product.info">
<reference name="alert.urls">
<block type="productalert/product_view" name="productalert.price" as="productalert_price" template="productalert/product/view.phtml">
<action method="preparePriceAlertData"/>
<action method="setHtmlClass"><value>alert-price link-price-alert</value></action>
<action method="setSignupLabel" translate="value"><value>Sign up for price alert</value></action>
</block>
<block type="productalert/product_view" name="productalert.stock" as="productalert_stock" template="productalert/product/view.phtml">
<action method="prepareStockAlertData"/>
<action method="setHtmlClass"><value>alert-stock link-stock-alert</value></action>
<action method="setSignupLabel" translate="value"><value>Sign up to get notified when this product is back in stock</value></action>
</block>
</reference>
</reference>
</reference>
</catalog_product_view>
</layout>


productalert/product/view.phtml (the block's template -- Stock)



<?php /* @var $this Mage_ProductAlert_Block_Product_View */?>
<h1>Hello</h1>
<p class="<?php echo $this->getHtmlClass() ?>">
<a href="<?php echo $this->escapeHtml($this->getSignupUrl()) ?>" title="<?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?>"><?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?></a>
</p>


Here is the screenshot:



enter image description here










share|improve this question
















bumped to the homepage by Community 9 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















    In my project, what I did is copied all the layouts and template files of base/default to my new theme folder default/efk.



    After that, I made many changes in some layout and template files as needed.



    My project is somewhat different from the default magento. In my project, I have configurable products in which each consists of 3 types of simple products.



    Now, if any of the single simple product is out of stock, then I need to show "Sign up to get notified when this product is back in stock" as shown in default magento.



    When I did some research I figured it out that this link is coming from the phtml line



    <?php echo $this->getChildHtml('alert_urls') ?>


    I added the same line in my project in template/catalog/product/view.phtml, but I can't see the "Sign up to get notified when this product is back in stock".



    PS: The reference of the block "alert_urls" are not changed. They are same as they are in default magento but in my theme folder instead.



    EDIT:



    The flow as I understand magento is as follows:



    layout/catalog.xml (the block location)



        <catalog_product_view translate="label">
    <reference name="content">
    <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
    <block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
    <label>Alert Urls</label>
    </block>

    //some other blocks


    layout/productalert.xml (the block reference location)



    <layout version="0.1.0">
    <catalog_product_view>
    <reference name="content">
    <reference name="product.info">
    <reference name="alert.urls">
    <block type="productalert/product_view" name="productalert.price" as="productalert_price" template="productalert/product/view.phtml">
    <action method="preparePriceAlertData"/>
    <action method="setHtmlClass"><value>alert-price link-price-alert</value></action>
    <action method="setSignupLabel" translate="value"><value>Sign up for price alert</value></action>
    </block>
    <block type="productalert/product_view" name="productalert.stock" as="productalert_stock" template="productalert/product/view.phtml">
    <action method="prepareStockAlertData"/>
    <action method="setHtmlClass"><value>alert-stock link-stock-alert</value></action>
    <action method="setSignupLabel" translate="value"><value>Sign up to get notified when this product is back in stock</value></action>
    </block>
    </reference>
    </reference>
    </reference>
    </catalog_product_view>
    </layout>


    productalert/product/view.phtml (the block's template -- Stock)



    <?php /* @var $this Mage_ProductAlert_Block_Product_View */?>
    <h1>Hello</h1>
    <p class="<?php echo $this->getHtmlClass() ?>">
    <a href="<?php echo $this->escapeHtml($this->getSignupUrl()) ?>" title="<?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?>"><?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?></a>
    </p>


    Here is the screenshot:



    enter image description here










    share|improve this question
















    bumped to the homepage by Community 9 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












      2








      2


      0






      In my project, what I did is copied all the layouts and template files of base/default to my new theme folder default/efk.



      After that, I made many changes in some layout and template files as needed.



      My project is somewhat different from the default magento. In my project, I have configurable products in which each consists of 3 types of simple products.



      Now, if any of the single simple product is out of stock, then I need to show "Sign up to get notified when this product is back in stock" as shown in default magento.



      When I did some research I figured it out that this link is coming from the phtml line



      <?php echo $this->getChildHtml('alert_urls') ?>


      I added the same line in my project in template/catalog/product/view.phtml, but I can't see the "Sign up to get notified when this product is back in stock".



      PS: The reference of the block "alert_urls" are not changed. They are same as they are in default magento but in my theme folder instead.



      EDIT:



      The flow as I understand magento is as follows:



      layout/catalog.xml (the block location)



          <catalog_product_view translate="label">
      <reference name="content">
      <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
      <block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
      <label>Alert Urls</label>
      </block>

      //some other blocks


      layout/productalert.xml (the block reference location)



      <layout version="0.1.0">
      <catalog_product_view>
      <reference name="content">
      <reference name="product.info">
      <reference name="alert.urls">
      <block type="productalert/product_view" name="productalert.price" as="productalert_price" template="productalert/product/view.phtml">
      <action method="preparePriceAlertData"/>
      <action method="setHtmlClass"><value>alert-price link-price-alert</value></action>
      <action method="setSignupLabel" translate="value"><value>Sign up for price alert</value></action>
      </block>
      <block type="productalert/product_view" name="productalert.stock" as="productalert_stock" template="productalert/product/view.phtml">
      <action method="prepareStockAlertData"/>
      <action method="setHtmlClass"><value>alert-stock link-stock-alert</value></action>
      <action method="setSignupLabel" translate="value"><value>Sign up to get notified when this product is back in stock</value></action>
      </block>
      </reference>
      </reference>
      </reference>
      </catalog_product_view>
      </layout>


      productalert/product/view.phtml (the block's template -- Stock)



      <?php /* @var $this Mage_ProductAlert_Block_Product_View */?>
      <h1>Hello</h1>
      <p class="<?php echo $this->getHtmlClass() ?>">
      <a href="<?php echo $this->escapeHtml($this->getSignupUrl()) ?>" title="<?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?>"><?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?></a>
      </p>


      Here is the screenshot:



      enter image description here










      share|improve this question
















      In my project, what I did is copied all the layouts and template files of base/default to my new theme folder default/efk.



      After that, I made many changes in some layout and template files as needed.



      My project is somewhat different from the default magento. In my project, I have configurable products in which each consists of 3 types of simple products.



      Now, if any of the single simple product is out of stock, then I need to show "Sign up to get notified when this product is back in stock" as shown in default magento.



      When I did some research I figured it out that this link is coming from the phtml line



      <?php echo $this->getChildHtml('alert_urls') ?>


      I added the same line in my project in template/catalog/product/view.phtml, but I can't see the "Sign up to get notified when this product is back in stock".



      PS: The reference of the block "alert_urls" are not changed. They are same as they are in default magento but in my theme folder instead.



      EDIT:



      The flow as I understand magento is as follows:



      layout/catalog.xml (the block location)



          <catalog_product_view translate="label">
      <reference name="content">
      <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
      <block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
      <label>Alert Urls</label>
      </block>

      //some other blocks


      layout/productalert.xml (the block reference location)



      <layout version="0.1.0">
      <catalog_product_view>
      <reference name="content">
      <reference name="product.info">
      <reference name="alert.urls">
      <block type="productalert/product_view" name="productalert.price" as="productalert_price" template="productalert/product/view.phtml">
      <action method="preparePriceAlertData"/>
      <action method="setHtmlClass"><value>alert-price link-price-alert</value></action>
      <action method="setSignupLabel" translate="value"><value>Sign up for price alert</value></action>
      </block>
      <block type="productalert/product_view" name="productalert.stock" as="productalert_stock" template="productalert/product/view.phtml">
      <action method="prepareStockAlertData"/>
      <action method="setHtmlClass"><value>alert-stock link-stock-alert</value></action>
      <action method="setSignupLabel" translate="value"><value>Sign up to get notified when this product is back in stock</value></action>
      </block>
      </reference>
      </reference>
      </reference>
      </catalog_product_view>
      </layout>


      productalert/product/view.phtml (the block's template -- Stock)



      <?php /* @var $this Mage_ProductAlert_Block_Product_View */?>
      <h1>Hello</h1>
      <p class="<?php echo $this->getHtmlClass() ?>">
      <a href="<?php echo $this->escapeHtml($this->getSignupUrl()) ?>" title="<?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?>"><?php echo $this->escapeHtml($this->__($this->getSignupLabel())); ?></a>
      </p>


      Here is the screenshot:



      enter image description here







      magento-1.8 alert






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 20 '13 at 11:00







      Mr_Green

















      asked Nov 20 '13 at 10:18









      Mr_GreenMr_Green

      1,04342648




      1,04342648





      bumped to the homepage by Community 9 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 9 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














          Please ensure system configuration from admin in enable



          System > Configuration > Catalog > Allow Alert When Product Comes Back in Stock - Yes





          share|improve this answer































            0














            If you still have this issue, even if you ENABLED the option Allow Alert When Product Comes Back in Stock from the admin panel and everything is right with your template and layout files, then check the block Mage_ProductAlert_Block_Product_View and the method prepareStockAlertData() whether if it get's inside the following if block.



            if (!Mage::getStoreConfigFlag(Mage_ProductAlert_Model_Observer::XML_PATH_STOCK_ALLOW)
            || !$this->_product || $this->_product->isAvailable()
            ) {
            $this->setTemplate('');
            return;
            }


            If its get inside this then either the product is still in stock and available for purchase (in case of back orders) or no product instance or you might not have enabled this in the admin panel. Either of these three might be the reason its not showing up in your product page !



            Hope this helps !






            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%2f10989%2fcant-see-alert-urls-block-template%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














              Please ensure system configuration from admin in enable



              System > Configuration > Catalog > Allow Alert When Product Comes Back in Stock - Yes





              share|improve this answer




























                0














                Please ensure system configuration from admin in enable



                System > Configuration > Catalog > Allow Alert When Product Comes Back in Stock - Yes





                share|improve this answer


























                  0












                  0








                  0







                  Please ensure system configuration from admin in enable



                  System > Configuration > Catalog > Allow Alert When Product Comes Back in Stock - Yes





                  share|improve this answer













                  Please ensure system configuration from admin in enable



                  System > Configuration > Catalog > Allow Alert When Product Comes Back in Stock - Yes






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Apr 26 '14 at 6:05









                  ShivamShivam

                  1055




                  1055

























                      0














                      If you still have this issue, even if you ENABLED the option Allow Alert When Product Comes Back in Stock from the admin panel and everything is right with your template and layout files, then check the block Mage_ProductAlert_Block_Product_View and the method prepareStockAlertData() whether if it get's inside the following if block.



                      if (!Mage::getStoreConfigFlag(Mage_ProductAlert_Model_Observer::XML_PATH_STOCK_ALLOW)
                      || !$this->_product || $this->_product->isAvailable()
                      ) {
                      $this->setTemplate('');
                      return;
                      }


                      If its get inside this then either the product is still in stock and available for purchase (in case of back orders) or no product instance or you might not have enabled this in the admin panel. Either of these three might be the reason its not showing up in your product page !



                      Hope this helps !






                      share|improve this answer




























                        0














                        If you still have this issue, even if you ENABLED the option Allow Alert When Product Comes Back in Stock from the admin panel and everything is right with your template and layout files, then check the block Mage_ProductAlert_Block_Product_View and the method prepareStockAlertData() whether if it get's inside the following if block.



                        if (!Mage::getStoreConfigFlag(Mage_ProductAlert_Model_Observer::XML_PATH_STOCK_ALLOW)
                        || !$this->_product || $this->_product->isAvailable()
                        ) {
                        $this->setTemplate('');
                        return;
                        }


                        If its get inside this then either the product is still in stock and available for purchase (in case of back orders) or no product instance or you might not have enabled this in the admin panel. Either of these three might be the reason its not showing up in your product page !



                        Hope this helps !






                        share|improve this answer


























                          0












                          0








                          0







                          If you still have this issue, even if you ENABLED the option Allow Alert When Product Comes Back in Stock from the admin panel and everything is right with your template and layout files, then check the block Mage_ProductAlert_Block_Product_View and the method prepareStockAlertData() whether if it get's inside the following if block.



                          if (!Mage::getStoreConfigFlag(Mage_ProductAlert_Model_Observer::XML_PATH_STOCK_ALLOW)
                          || !$this->_product || $this->_product->isAvailable()
                          ) {
                          $this->setTemplate('');
                          return;
                          }


                          If its get inside this then either the product is still in stock and available for purchase (in case of back orders) or no product instance or you might not have enabled this in the admin panel. Either of these three might be the reason its not showing up in your product page !



                          Hope this helps !






                          share|improve this answer













                          If you still have this issue, even if you ENABLED the option Allow Alert When Product Comes Back in Stock from the admin panel and everything is right with your template and layout files, then check the block Mage_ProductAlert_Block_Product_View and the method prepareStockAlertData() whether if it get's inside the following if block.



                          if (!Mage::getStoreConfigFlag(Mage_ProductAlert_Model_Observer::XML_PATH_STOCK_ALLOW)
                          || !$this->_product || $this->_product->isAvailable()
                          ) {
                          $this->setTemplate('');
                          return;
                          }


                          If its get inside this then either the product is still in stock and available for purchase (in case of back orders) or no product instance or you might not have enabled this in the admin panel. Either of these three might be the reason its not showing up in your product page !



                          Hope this helps !







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Oct 9 '14 at 15:36









                          HaijeromeHaijerome

                          1,0561119




                          1,0561119






























                              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%2f10989%2fcant-see-alert-urls-block-template%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

                              “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

                              How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

                              夢乃愛華...