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
magento2 search catalogsearch
add a comment |
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
magento2 search catalogsearch
Can you please upload your code ?
– Rohan Hapani
54 mins ago
add a comment |
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
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 37 mins ago
nikin
658212
658212
asked 59 mins ago
jafar pinjar
578312
578312
Can you please upload your code ?
– Rohan Hapani
54 mins ago
add a comment |
Can you please upload your code ?
– Rohan Hapani
54 mins ago
Can you please upload your code ?
– Rohan Hapani
54 mins ago
Can you please upload your code ?
– Rohan Hapani
54 mins ago
add a comment |
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()
hi @Amit, got count but keyword is not returned
– jafar pinjar
49 mins ago
My mistake, i don't paste proper class name
– Amit Bera♦
46 mins ago
ok, thanks it worked, could you check the Terms and condition issue?
– jafar pinjar
41 mins ago
add a comment |
up vote
2
down vote
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
add a comment |
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()
add a comment |
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()
hi @Amit, got count but keyword is not returned
– jafar pinjar
49 mins ago
My mistake, i don't paste proper class name
– Amit Bera♦
46 mins ago
ok, thanks it worked, could you check the Terms and condition issue?
– jafar pinjar
41 mins ago
add a comment |
up vote
1
down vote
accepted
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
49 mins ago
My mistake, i don't paste proper class name
– Amit Bera♦
46 mins ago
ok, thanks it worked, could you check the Terms and condition issue?
– jafar pinjar
41 mins ago
add a comment |
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()
You can get Search result count $block->getResultCount()
and use keyword for get $this->helper('MagentoCatalogSearchHelperData')->getEscapedQueryText()
edited 47 mins ago
answered 54 mins ago
Amit Bera♦
56.6k1371169
56.6k1371169
hi @Amit, got count but keyword is not returned
– jafar pinjar
49 mins ago
My mistake, i don't paste proper class name
– Amit Bera♦
46 mins ago
ok, thanks it worked, could you check the Terms and condition issue?
– jafar pinjar
41 mins ago
add a comment |
hi @Amit, got count but keyword is not returned
– jafar pinjar
49 mins ago
My mistake, i don't paste proper class name
– Amit Bera♦
46 mins ago
ok, thanks it worked, could you check the Terms and condition issue?
– jafar pinjar
41 mins ago
hi @Amit, got count but keyword is not returned
– jafar pinjar
49 mins ago
hi @Amit, got count but keyword is not returned
– jafar pinjar
49 mins ago
My mistake, i don't paste proper class name
– Amit Bera♦
46 mins ago
My mistake, i don't paste proper class name
– Amit Bera♦
46 mins ago
ok, thanks it worked, could you check the Terms and condition issue?
– jafar pinjar
41 mins ago
ok, thanks it worked, could you check the Terms and condition issue?
– jafar pinjar
41 mins ago
add a comment |
up vote
2
down vote
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
add a comment |
up vote
2
down vote
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
add a comment |
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();
To get Search Result count :
$resultCount = $block->getResultCount();
To get Search Keyword :
$helper = $this->helper('MagentoSearchHelperData');
$searchKeyword = $helper->getEscapedQueryText();
answered 47 mins ago
nikin
658212
658212
add a comment |
add a comment |
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()
add a comment |
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()
add a comment |
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()
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 47 mins ago
Rohan Hapani
5,48321561
5,48321561
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
54 mins ago