givanz / Vvveb

Powerful and easy to use cms to build websites, blogs or ecommerce stores.
https://www.vvveb.com
GNU Affero General Public License v3.0
245 stars 49 forks source link

Search does not return any product results #148

Open Twilight-Computer opened 3 days ago

Twilight-Computer commented 3 days ago

The search icon, does not return any results for products in the database.

givanz commented 3 days ago

It doesn't work with some specific queries or does not work at all?

Search is using the database full text search engine that works only with words and phrases, if you want search to work for any string you can replace

data-v-search="url" 

with

data-v-like="url" 

in theme search/index.html template

https://github.com/givanz/landing/blob/main/search/index.html#L776-L777

Like parameter was added to products and posts components in the last update, you need to update app/component/products.php and app/component/posts.php.