Magento - Product review page layout changes not reflectingRegister user product review not reflecting in My...

Roman Numerals equation 1

What is causing the chain skip after chain replacement?

A starship is travelling at 0.9c and collides with a small rock. Will it leave a clean hole through, or will more happen?

Can we use the stored gravitational potential energy of a building to produce power?

How can I get my players to come to the game session after agreeing to a date?

Writing a character who is going through a civilizing process without overdoing it?

How to prevent users from executing commands through browser URL

Can I string the D&D Starter Set campaign into another module, keeping the same characters?

Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?

Writing Cyrillic text to a file

How much mayhem could I cause as a sentient fish?

Avoiding morning and evening handshakes

Why is the copy constructor called twice in this code snippet?

A title for a history book

Why publish a research paper when a blog post or a lecture slide can have more citation count than a journal paper?

Why are the books in the Game of Thrones citadel library shelved spine inwards?

Dilemma of explaining to interviewer that he is the reason for declining second interview

Why are these T-SQL jobs from different SQL Server instances executed on the same instance (AlwaysOn Availability Groups)

How can my powered armor quickly replace its ceramic plates?

One Half of Ten; A Riddle

Can placing a counter on a creature after it has been assigned as an attacker remove it from combat

Can you share a component pouch with another creature?

Using only 1s, make 29 with the minimum number of digits

Could a phylactery of a lich be a mirror or does it have to be a box?



Magento - Product review page layout changes not reflecting


Register user product review not reflecting in My account sectionReview block not displayed on product pageProduct Review Do not submitProduct review “Submit” button not workingBlank product review pageMove review tab on product pageNot able to save changes to review modelChanging Magento Product Review Page TitlesIndividual product review pageMagento2 Override Block - Invalid template file problem













0















Totaly new to Magento and working with version 1.9.3.8.



I am trying to change the layout of product review page from 2columns to 1column by editing the review.xml file present in the following path default/layout/review.xml.



This is what my code looks like.



<review_product_view translate="label">
<label>Catalog Product Review View</label>
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="content">
<block type="review/view" name="review_view"/>
</reference>
</review_product_view>


The changes are not reflecting. Am I missing something somewhere?



Thanks in advance!










share|improve this question

























  • Make sure you are changing file in your theme and clear cache after changes.

    – Chirag Rajput
    Apr 7 '18 at 6:28
















0















Totaly new to Magento and working with version 1.9.3.8.



I am trying to change the layout of product review page from 2columns to 1column by editing the review.xml file present in the following path default/layout/review.xml.



This is what my code looks like.



<review_product_view translate="label">
<label>Catalog Product Review View</label>
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="content">
<block type="review/view" name="review_view"/>
</reference>
</review_product_view>


The changes are not reflecting. Am I missing something somewhere?



Thanks in advance!










share|improve this question

























  • Make sure you are changing file in your theme and clear cache after changes.

    – Chirag Rajput
    Apr 7 '18 at 6:28














0












0








0








Totaly new to Magento and working with version 1.9.3.8.



I am trying to change the layout of product review page from 2columns to 1column by editing the review.xml file present in the following path default/layout/review.xml.



This is what my code looks like.



<review_product_view translate="label">
<label>Catalog Product Review View</label>
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="content">
<block type="review/view" name="review_view"/>
</reference>
</review_product_view>


The changes are not reflecting. Am I missing something somewhere?



Thanks in advance!










share|improve this question
















Totaly new to Magento and working with version 1.9.3.8.



I am trying to change the layout of product review page from 2columns to 1column by editing the review.xml file present in the following path default/layout/review.xml.



This is what my code looks like.



<review_product_view translate="label">
<label>Catalog Product Review View</label>
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="content">
<block type="review/view" name="review_view"/>
</reference>
</review_product_view>


The changes are not reflecting. Am I missing something somewhere?



Thanks in advance!







product layout review magento1.9.3






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 7 '18 at 4:32









Emipro Technologies Pvt. Ltd.

2,5161825




2,5161825










asked Apr 6 '18 at 22:31









Darshan JethwaDarshan Jethwa

166




166













  • Make sure you are changing file in your theme and clear cache after changes.

    – Chirag Rajput
    Apr 7 '18 at 6:28



















  • Make sure you are changing file in your theme and clear cache after changes.

    – Chirag Rajput
    Apr 7 '18 at 6:28

















Make sure you are changing file in your theme and clear cache after changes.

– Chirag Rajput
Apr 7 '18 at 6:28





Make sure you are changing file in your theme and clear cache after changes.

– Chirag Rajput
Apr 7 '18 at 6:28










2 Answers
2






active

oldest

votes


















0














You have to change layout in review_product_list handler, not in "review_product_view". Try this then flush your cache , hope it will work



<review_product_list>
<reference name="root">
<action method="setTemplate">
<template>page/1column.phtml</template>
</action>
</reference>
</review_product_list>





share|improve this answer































    0














    It does not work with this handle: review_product_list



    The issue is that that handle is not loading when the reviews page is selected.



    If you go ahead and add this line to your form:



    Zend_Debug::dump($this->getLayout()->getUpdate()->getHandles());


    You will see that the handle review_product_list is not in that array, on the contrary you will see this handle: catalog_product_view



    I bet you that if you change this:



    <review_product_list>
    <reference name="root">
    <action method="setTemplate">
    <template>page/1column.phtml</template>
    </action>
    </reference>
    </review_product_list>


    For this:



    <catalog_product_view>
    <reference name="root">
    <action method="setTemplate">
    <template>page/1column.phtml</template>
    </action>
    </reference>
    </catalog_product_view>


    It will work, obviously not where you want that to be added but the reason is the loading of that particular handle.



    Any ideas about this issue?






    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%2f221429%2fmagento-product-review-page-layout-changes-not-reflecting%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














      You have to change layout in review_product_list handler, not in "review_product_view". Try this then flush your cache , hope it will work



      <review_product_list>
      <reference name="root">
      <action method="setTemplate">
      <template>page/1column.phtml</template>
      </action>
      </reference>
      </review_product_list>





      share|improve this answer




























        0














        You have to change layout in review_product_list handler, not in "review_product_view". Try this then flush your cache , hope it will work



        <review_product_list>
        <reference name="root">
        <action method="setTemplate">
        <template>page/1column.phtml</template>
        </action>
        </reference>
        </review_product_list>





        share|improve this answer


























          0












          0








          0







          You have to change layout in review_product_list handler, not in "review_product_view". Try this then flush your cache , hope it will work



          <review_product_list>
          <reference name="root">
          <action method="setTemplate">
          <template>page/1column.phtml</template>
          </action>
          </reference>
          </review_product_list>





          share|improve this answer













          You have to change layout in review_product_list handler, not in "review_product_view". Try this then flush your cache , hope it will work



          <review_product_list>
          <reference name="root">
          <action method="setTemplate">
          <template>page/1column.phtml</template>
          </action>
          </reference>
          </review_product_list>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Apr 7 '18 at 4:42









          Naveed AsimNaveed Asim

          2,5842315




          2,5842315

























              0














              It does not work with this handle: review_product_list



              The issue is that that handle is not loading when the reviews page is selected.



              If you go ahead and add this line to your form:



              Zend_Debug::dump($this->getLayout()->getUpdate()->getHandles());


              You will see that the handle review_product_list is not in that array, on the contrary you will see this handle: catalog_product_view



              I bet you that if you change this:



              <review_product_list>
              <reference name="root">
              <action method="setTemplate">
              <template>page/1column.phtml</template>
              </action>
              </reference>
              </review_product_list>


              For this:



              <catalog_product_view>
              <reference name="root">
              <action method="setTemplate">
              <template>page/1column.phtml</template>
              </action>
              </reference>
              </catalog_product_view>


              It will work, obviously not where you want that to be added but the reason is the loading of that particular handle.



              Any ideas about this issue?






              share|improve this answer




























                0














                It does not work with this handle: review_product_list



                The issue is that that handle is not loading when the reviews page is selected.



                If you go ahead and add this line to your form:



                Zend_Debug::dump($this->getLayout()->getUpdate()->getHandles());


                You will see that the handle review_product_list is not in that array, on the contrary you will see this handle: catalog_product_view



                I bet you that if you change this:



                <review_product_list>
                <reference name="root">
                <action method="setTemplate">
                <template>page/1column.phtml</template>
                </action>
                </reference>
                </review_product_list>


                For this:



                <catalog_product_view>
                <reference name="root">
                <action method="setTemplate">
                <template>page/1column.phtml</template>
                </action>
                </reference>
                </catalog_product_view>


                It will work, obviously not where you want that to be added but the reason is the loading of that particular handle.



                Any ideas about this issue?






                share|improve this answer


























                  0












                  0








                  0







                  It does not work with this handle: review_product_list



                  The issue is that that handle is not loading when the reviews page is selected.



                  If you go ahead and add this line to your form:



                  Zend_Debug::dump($this->getLayout()->getUpdate()->getHandles());


                  You will see that the handle review_product_list is not in that array, on the contrary you will see this handle: catalog_product_view



                  I bet you that if you change this:



                  <review_product_list>
                  <reference name="root">
                  <action method="setTemplate">
                  <template>page/1column.phtml</template>
                  </action>
                  </reference>
                  </review_product_list>


                  For this:



                  <catalog_product_view>
                  <reference name="root">
                  <action method="setTemplate">
                  <template>page/1column.phtml</template>
                  </action>
                  </reference>
                  </catalog_product_view>


                  It will work, obviously not where you want that to be added but the reason is the loading of that particular handle.



                  Any ideas about this issue?






                  share|improve this answer













                  It does not work with this handle: review_product_list



                  The issue is that that handle is not loading when the reviews page is selected.



                  If you go ahead and add this line to your form:



                  Zend_Debug::dump($this->getLayout()->getUpdate()->getHandles());


                  You will see that the handle review_product_list is not in that array, on the contrary you will see this handle: catalog_product_view



                  I bet you that if you change this:



                  <review_product_list>
                  <reference name="root">
                  <action method="setTemplate">
                  <template>page/1column.phtml</template>
                  </action>
                  </reference>
                  </review_product_list>


                  For this:



                  <catalog_product_view>
                  <reference name="root">
                  <action method="setTemplate">
                  <template>page/1column.phtml</template>
                  </action>
                  </reference>
                  </catalog_product_view>


                  It will work, obviously not where you want that to be added but the reason is the loading of that particular handle.



                  Any ideas about this issue?







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 13 mins ago









                  bvprogramitbvprogramit

                  113




                  113






























                      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%2f221429%2fmagento-product-review-page-layout-changes-not-reflecting%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)...

                      夢乃愛華...