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
384 stars 82 forks source link

Search does not return any product results #148

Closed Twilight-Computer closed 1 month ago

Twilight-Computer commented 4 months ago

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

givanz commented 4 months 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.