Product reviews to display even if zero reviews












0















In magento 1.9.3.1 on the category list page and also on the actual product view page, it displays the stars and 1 Review(s) : add your review



now this only shows up if there are reviews, anyone know how i can get this to display even if there are no reviews i.e.



the grey stars then 0 review(s) : add your review



as i want to remove the tabs with the reviews at the bottom





there are two of those statements, and i have tried changed one at a time and even both and it doesnt work for me



  <?php if ($this->getReviewsCount()): ?>
<div class="ratings">
<?php if ($this->getRatingSummary()):?>
<div class="rating-box">
<div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
</div>
<?php endif;?>
<p class="rating-links">
<a href="<?php echo $this->getReviewsUrl() ?>"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a>
<span class="separator">|</span>
<a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Add Your Review') ?></a>
</p>
</div>
<?php elseif ($this->getDisplayIfEmpty()): ?>
<p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
<?php endif; ?>









share|improve this question
















bumped to the homepage by Community 12 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 magento 1.9.3.1 on the category list page and also on the actual product view page, it displays the stars and 1 Review(s) : add your review



    now this only shows up if there are reviews, anyone know how i can get this to display even if there are no reviews i.e.



    the grey stars then 0 review(s) : add your review



    as i want to remove the tabs with the reviews at the bottom





    there are two of those statements, and i have tried changed one at a time and even both and it doesnt work for me



      <?php if ($this->getReviewsCount()): ?>
    <div class="ratings">
    <?php if ($this->getRatingSummary()):?>
    <div class="rating-box">
    <div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
    </div>
    <?php endif;?>
    <p class="rating-links">
    <a href="<?php echo $this->getReviewsUrl() ?>"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a>
    <span class="separator">|</span>
    <a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Add Your Review') ?></a>
    </p>
    </div>
    <?php elseif ($this->getDisplayIfEmpty()): ?>
    <p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
    <?php endif; ?>









    share|improve this question
















    bumped to the homepage by Community 12 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 magento 1.9.3.1 on the category list page and also on the actual product view page, it displays the stars and 1 Review(s) : add your review



      now this only shows up if there are reviews, anyone know how i can get this to display even if there are no reviews i.e.



      the grey stars then 0 review(s) : add your review



      as i want to remove the tabs with the reviews at the bottom





      there are two of those statements, and i have tried changed one at a time and even both and it doesnt work for me



        <?php if ($this->getReviewsCount()): ?>
      <div class="ratings">
      <?php if ($this->getRatingSummary()):?>
      <div class="rating-box">
      <div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
      </div>
      <?php endif;?>
      <p class="rating-links">
      <a href="<?php echo $this->getReviewsUrl() ?>"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a>
      <span class="separator">|</span>
      <a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Add Your Review') ?></a>
      </p>
      </div>
      <?php elseif ($this->getDisplayIfEmpty()): ?>
      <p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
      <?php endif; ?>









      share|improve this question
















      In magento 1.9.3.1 on the category list page and also on the actual product view page, it displays the stars and 1 Review(s) : add your review



      now this only shows up if there are reviews, anyone know how i can get this to display even if there are no reviews i.e.



      the grey stars then 0 review(s) : add your review



      as i want to remove the tabs with the reviews at the bottom





      there are two of those statements, and i have tried changed one at a time and even both and it doesnt work for me



        <?php if ($this->getReviewsCount()): ?>
      <div class="ratings">
      <?php if ($this->getRatingSummary()):?>
      <div class="rating-box">
      <div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
      </div>
      <?php endif;?>
      <p class="rating-links">
      <a href="<?php echo $this->getReviewsUrl() ?>"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a>
      <span class="separator">|</span>
      <a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Add Your Review') ?></a>
      </p>
      </div>
      <?php elseif ($this->getDisplayIfEmpty()): ?>
      <p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
      <?php endif; ?>






      magento-1.9 product-review






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 7 '17 at 12:51









      Marius

      164k28315669




      164k28315669










      asked Feb 7 '17 at 9:48









      pluggerplugger

      1




      1





      bumped to the homepage by Community 12 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 12 mins ago


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
























          1 Answer
          1






          active

          oldest

          votes


















          0














          In appdesignfrontendpackage_nametheme_nametemplatereviewhelpersummary.phtml change the condition if ($this->getReviewsCount()): to if ($this->getReviewsCount() >= 0)






          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%2f158503%2fproduct-reviews-to-display-even-if-zero-reviews%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














            In appdesignfrontendpackage_nametheme_nametemplatereviewhelpersummary.phtml change the condition if ($this->getReviewsCount()): to if ($this->getReviewsCount() >= 0)






            share|improve this answer




























              0














              In appdesignfrontendpackage_nametheme_nametemplatereviewhelpersummary.phtml change the condition if ($this->getReviewsCount()): to if ($this->getReviewsCount() >= 0)






              share|improve this answer


























                0












                0








                0







                In appdesignfrontendpackage_nametheme_nametemplatereviewhelpersummary.phtml change the condition if ($this->getReviewsCount()): to if ($this->getReviewsCount() >= 0)






                share|improve this answer













                In appdesignfrontendpackage_nametheme_nametemplatereviewhelpersummary.phtml change the condition if ($this->getReviewsCount()): to if ($this->getReviewsCount() >= 0)







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Feb 7 '17 at 10:54









                Dalbin ShimyDalbin Shimy

                688




                688






























                    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%2f158503%2fproduct-reviews-to-display-even-if-zero-reviews%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

                    What other Star Trek series did the main TNG cast show up in?

                    Berlina muro

                    Berlina aerponto