Questions tagged [fulltext]
The fulltext tag has no summary.
25 questions
0 votes
0 answers
63 views
How to correctly setup a fulltext filter in Admin Grid? (exam question)
A third-party vendor has developed a module to add blogging functionality to Adobe Commerce. The module creates a new database table to store the blog posts and includes an Admin grid to display the ...
1 vote
0 answers
450 views
Magento 2 - Fulltext search Product SKU / Product Name in Sales Order Grid
I'm a newbie, new to magento 2. Please guide me here: I want to search fulltext product sku and product id in grid order. I have now added the product sku and product id to the grid, the filter is ...
2 votes
0 answers
1k views
Magento 2 custom ui_grid filterSearch issue
I have an error when attempting to search for a keyword in my custom table In Network tab, i have a call to https://mylocalsite.local/admin/mui/index/render/?namespace=my_grid&search=123&...
0 votes
2 answers
5k views
Fulltext search throws "The bucket doesn't exist"
Reopening this discussion, as none of the found solutions worked. I have about 60 categories and subcategories, going down 4 levels deep. Number of products is irrelevant, this bug reproduces with 10 ...
1 vote
1 answer
1k views
Magento 2: Adding full text search to custom grid results in error on count query
I am trying to add full text search to a custom grid. I have done the following steps added full text indexes to related columns in the table in the ui component xml file, added <filterSearch name=...
5 votes
1 answer
2k views
Custom search functionality
I want to implement custom full text search functionality for front end that fetch result only from company table. Kindly please let me know if you guys have any idea. In frontend User can search with ...
1 vote
0 answers
71 views
How data are coming into ElasticSearch while running catalogsearch_fulltext?
I have ElasticSearch as a catalogue search engine. Whenever we are running catalogsearch_fulltext, it is pushing the data into ElasticSearch. I need to do apply a filter to those data before pushing ...
0 votes
1 answer
4k views
Magento2: How to get product collection by full text search?
How to get product collection by full text search? $query = $this->queryFactory->get()->getQueryText(); $collection = $this->_productCollectionFactory->create(); ...
5 votes
0 answers
288 views
Magento 2 - Product names with number/digits & special characters are not searchable
I have product names like ' 8" X 6" cards ' they contain measurements i.e. numbers and characters. when I try to search these products on the frontend. the Ajax search returns the product fine and ...
3 votes
1 answer
574 views
Magento 2.2.5: About Search FullText
I'm doing "search by fulltext" in "Banner Slider" module, and every thing works perfect, but when i click on "x" button to reset the search, it return exactly the same slide as the last slide which in ...
3 votes
0 answers
289 views
Magento Full Text Search through API
I have an API2 REST end point that is trying to do a full text search. The problem is that it's always returning empty results for not specific reason. This is the code i have: $query = Mage::...
0 votes
1 answer
225 views
Fulltext search in layered navigation page
if we pass a query string in the /catalogsearch/result?q=string page it will return products which match the string with any of its attributes. But in the filter navigation search result page, we can'...
7 votes
4 answers
5k views
How do I change Magento 2 search from OR logic to AND?
How do I change Magento 2 mini search logic from OR to AND? Right now if I search for 'Shoe laces', it returns all products with terms either 'shoe' or 'laces'. I need a Fulltext search so that only ...
3 votes
2 answers
3k views
Magento2: Search programatically like Magento2
I've tried looking for products programmatically that get the same results as magento 2 searches (In the search box). I have used: $result = array(); $filter1 = $this->_filterBuilder->...
1 vote
1 answer
3k views
Magento2: FullText Search Programatically
Does anyone know how to run a search using FullText and a string? I'm trying to inject use Magento\CatalogSearch\Model\ResourceModel\Fulltext\Collection as Fulltext; and do $this->_fulltext->...