Get search result count in Magento 2

Clash Royale CLAN TAG#URR8PPP
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
add a comment |
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
Can you please upload your code ?
– Rohan Hapani
Dec 12 at 10:34
add a comment |
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
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
magento2 search catalogsearch
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
add a comment |
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
add a comment |
3 Answers
3
active
oldest
votes
You can get Search result count $block->getResultCount()
and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()
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
add a comment |
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
add a comment |
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()
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
You can get Search result count $block->getResultCount()
and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()
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
add a comment |
You can get Search result count $block->getResultCount()
and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()
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
add a comment |
You can get Search result count $block->getResultCount()
and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()
You can get Search result count $block->getResultCount()
and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()
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
add a comment |
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
add a comment |
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
add a comment |
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
add a comment |
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
answered Dec 12 at 10:41
nikin
764213
764213
add a comment |
add a comment |
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()
add a comment |
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()
add a comment |
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()
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()
answered Dec 12 at 10:41
Rohan Hapani
5,61321561
5,61321561
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Can you please upload your code ?
– Rohan Hapani
Dec 12 at 10:34