Get search result count in Magento 2

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












2














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
    Dec 12 at 10:34
















2














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
    Dec 12 at 10:34














2












2








2







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 Dec 12 at 10:51









nikin

764213




764213










asked Dec 12 at 10:29









jafar pinjar

594312




594312











  • Can you please upload your code ?
    – Rohan Hapani
    Dec 12 at 10:34

















  • Can you please upload your code ?
    – Rohan Hapani
    Dec 12 at 10:34
















Can you please upload your code ?
– Rohan Hapani
Dec 12 at 10:34





Can you please upload your code ?
– Rohan Hapani
Dec 12 at 10:34











3 Answers
3






active

oldest

votes


















2














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
    Dec 12 at 10:39










  • My mistake, i don't paste proper class name
    – Amit Bera
    Dec 12 at 10:42










  • ok, thanks it worked, could you check the Terms and condition issue?
    – jafar pinjar
    Dec 12 at 10:48


















2














To get Search Result count :



$resultCount = $block->getResultCount();


To get Search Keyword :



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





share|improve this answer




























    1














    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',
      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%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









      2














      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
        Dec 12 at 10:39










      • My mistake, i don't paste proper class name
        – Amit Bera
        Dec 12 at 10:42










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        Dec 12 at 10:48















      2














      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
        Dec 12 at 10:39










      • My mistake, i don't paste proper class name
        – Amit Bera
        Dec 12 at 10:42










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        Dec 12 at 10:48













      2












      2








      2






      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 Dec 12 at 10:42

























      answered Dec 12 at 10:34









      Amit Bera

      56.9k1371169




      56.9k1371169











      • hi @Amit, got count but keyword is not returned
        – jafar pinjar
        Dec 12 at 10:39










      • My mistake, i don't paste proper class name
        – Amit Bera
        Dec 12 at 10:42










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        Dec 12 at 10:48
















      • hi @Amit, got count but keyword is not returned
        – jafar pinjar
        Dec 12 at 10:39










      • My mistake, i don't paste proper class name
        – Amit Bera
        Dec 12 at 10:42










      • ok, thanks it worked, could you check the Terms and condition issue?
        – jafar pinjar
        Dec 12 at 10:48















      hi @Amit, got count but keyword is not returned
      – jafar pinjar
      Dec 12 at 10:39




      hi @Amit, got count but keyword is not returned
      – jafar pinjar
      Dec 12 at 10:39












      My mistake, i don't paste proper class name
      – Amit Bera
      Dec 12 at 10:42




      My mistake, i don't paste proper class name
      – Amit Bera
      Dec 12 at 10:42












      ok, thanks it worked, could you check the Terms and condition issue?
      – jafar pinjar
      Dec 12 at 10:48




      ok, thanks it worked, could you check the Terms and condition issue?
      – jafar pinjar
      Dec 12 at 10:48













      2














      To get Search Result count :



      $resultCount = $block->getResultCount();


      To get Search Keyword :



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





      share|improve this answer

























        2














        To get Search Result count :



        $resultCount = $block->getResultCount();


        To get Search Keyword :



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





        share|improve this answer























          2












          2








          2






          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 Dec 12 at 10:41









          nikin

          764213




          764213





















              1














              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

























                1














                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























                  1












                  1








                  1






                  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 Dec 12 at 10:41









                  Rohan Hapani

                  5,61321561




                  5,61321561



























                      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

                      Peggy Mitchell

                      The Forum (Inglewood, California)

                      Palaiologos