Get search result count in Magento 2











up vote
1
down vote

favorite












How to get Search result count and keyword in result.phtml in magento2.



I have overriden the Magento_CatalogSearch/templates/result.phtml file.



I need to show the count returned from the search result as well as the key searched here.



Is that possible to get it. Please anyone suggest on this.



Thanks










share|improve this question
























  • Can you please upload your code ?
    – Rohan Hapani
    16 hours ago

















up vote
1
down vote

favorite












How to get Search result count and keyword in result.phtml in magento2.



I have overriden the Magento_CatalogSearch/templates/result.phtml file.



I need to show the count returned from the search result as well as the key searched here.



Is that possible to get it. Please anyone suggest on this.



Thanks










share|improve this question
























  • Can you please upload your code ?
    – Rohan Hapani
    16 hours ago















up vote
1
down vote

favorite









up vote
1
down vote

favorite











How to get Search result count and keyword in result.phtml in magento2.



I have overriden the Magento_CatalogSearch/templates/result.phtml file.



I need to show the count returned from the search result as well as the key searched here.



Is that possible to get it. Please anyone suggest on this.



Thanks










share|improve this question















How to get Search result count and keyword in result.phtml in magento2.



I have overriden the Magento_CatalogSearch/templates/result.phtml file.



I need to show the count returned from the search result as well as the key searched here.



Is that possible to get it. Please anyone suggest on this.



Thanks







magento2 search catalogsearch






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 15 hours ago









nikin

689212




689212










asked 16 hours ago









jafar pinjar

578312




578312












  • Can you please upload your code ?
    – Rohan Hapani
    16 hours ago




















  • Can you please upload your code ?
    – Rohan Hapani
    16 hours ago


















Can you please upload your code ?
– Rohan Hapani
16 hours ago






Can you please upload your code ?
– Rohan Hapani
16 hours ago












3 Answers
3






active

oldest

votes

















up vote
1
down vote



accepted










You can get Search result count $block->getResultCount()



and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()






share|improve this answer























  • hi @Amit, got count but keyword is not returned
    – jafar pinjar
    16 hours ago










  • My mistake, i don't paste proper class name
    – Amit Bera
    16 hours ago










  • ok, thanks it worked, could you check the Terms and condition issue?
    – jafar pinjar
    15 hours ago


















up vote
2
down vote













To get Search Result count :



$resultCount = $block->getResultCount();


To get Search Keyword :



$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();





share|improve this answer




























    up vote
    1
    down vote













    If you use MagentoCatalogSearchBlockResult this block in your custom module. Then you can use this below code :



    For search keyword :



    $this->catalogSearchData->getEscapedQueryText()


    OR



    $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()


    For count :



    $block->getResultCount()





    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',
      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%2f253316%2fget-search-result-count-in-magento-2%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      1
      down vote



      accepted










      You can get Search result count $block->getResultCount()



      and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()






      share|improve this answer























      • hi @Amit, got count but keyword is not returned
        – jafar pinjar
        16 hours ago










      • My mistake, i don't paste proper class name
        – Amit Bera
        16 hours ago










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        15 hours ago















      up vote
      1
      down vote



      accepted










      You can get Search result count $block->getResultCount()



      and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()






      share|improve this answer























      • hi @Amit, got count but keyword is not returned
        – jafar pinjar
        16 hours ago










      • My mistake, i don't paste proper class name
        – Amit Bera
        16 hours ago










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        15 hours ago













      up vote
      1
      down vote



      accepted







      up vote
      1
      down vote



      accepted






      You can get Search result count $block->getResultCount()



      and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()






      share|improve this answer














      You can get Search result count $block->getResultCount()



      and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited 16 hours ago

























      answered 16 hours ago









      Amit Bera

      56.6k1371169




      56.6k1371169












      • hi @Amit, got count but keyword is not returned
        – jafar pinjar
        16 hours ago










      • My mistake, i don't paste proper class name
        – Amit Bera
        16 hours ago










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        15 hours ago


















      • hi @Amit, got count but keyword is not returned
        – jafar pinjar
        16 hours ago










      • My mistake, i don't paste proper class name
        – Amit Bera
        16 hours ago










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        15 hours ago
















      hi @Amit, got count but keyword is not returned
      – jafar pinjar
      16 hours ago




      hi @Amit, got count but keyword is not returned
      – jafar pinjar
      16 hours ago












      My mistake, i don't paste proper class name
      – Amit Bera
      16 hours ago




      My mistake, i don't paste proper class name
      – Amit Bera
      16 hours ago












      ok, thanks it worked, could you check the Terms and condition issue?
      – jafar pinjar
      15 hours ago




      ok, thanks it worked, could you check the Terms and condition issue?
      – jafar pinjar
      15 hours ago












      up vote
      2
      down vote













      To get Search Result count :



      $resultCount = $block->getResultCount();


      To get Search Keyword :



      $helper = $this->helper('MagentoSearchHelperData');
      $searchKeyword = $helper->getEscapedQueryText();





      share|improve this answer

























        up vote
        2
        down vote













        To get Search Result count :



        $resultCount = $block->getResultCount();


        To get Search Keyword :



        $helper = $this->helper('MagentoSearchHelperData');
        $searchKeyword = $helper->getEscapedQueryText();





        share|improve this answer























          up vote
          2
          down vote










          up vote
          2
          down vote









          To get Search Result count :



          $resultCount = $block->getResultCount();


          To get Search Keyword :



          $helper = $this->helper('MagentoSearchHelperData');
          $searchKeyword = $helper->getEscapedQueryText();





          share|improve this answer












          To get Search Result count :



          $resultCount = $block->getResultCount();


          To get Search Keyword :



          $helper = $this->helper('MagentoSearchHelperData');
          $searchKeyword = $helper->getEscapedQueryText();






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 16 hours ago









          nikin

          689212




          689212






















              up vote
              1
              down vote













              If you use MagentoCatalogSearchBlockResult this block in your custom module. Then you can use this below code :



              For search keyword :



              $this->catalogSearchData->getEscapedQueryText()


              OR



              $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()


              For count :



              $block->getResultCount()





              share|improve this answer

























                up vote
                1
                down vote













                If you use MagentoCatalogSearchBlockResult this block in your custom module. Then you can use this below code :



                For search keyword :



                $this->catalogSearchData->getEscapedQueryText()


                OR



                $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()


                For count :



                $block->getResultCount()





                share|improve this answer























                  up vote
                  1
                  down vote










                  up vote
                  1
                  down vote









                  If you use MagentoCatalogSearchBlockResult this block in your custom module. Then you can use this below code :



                  For search keyword :



                  $this->catalogSearchData->getEscapedQueryText()


                  OR



                  $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()


                  For count :



                  $block->getResultCount()





                  share|improve this answer












                  If you use MagentoCatalogSearchBlockResult this block in your custom module. Then you can use this below code :



                  For search keyword :



                  $this->catalogSearchData->getEscapedQueryText()


                  OR



                  $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()


                  For count :



                  $block->getResultCount()






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 16 hours ago









                  Rohan Hapani

                  5,48321561




                  5,48321561






























                      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.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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%2f253316%2fget-search-result-count-in-magento-2%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

                      Mont Emei

                      Province de Neuquén

                      Soliste