Search found 128 matches

by columbo
03 Jan 2021, 14:29
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6352

Re: PostgreSQL: product search with multiple terms

Unfortunately not.
Phrases or products wiht both terms (term1 and term2) in the product name are not higher ranked / listed as first result
by columbo
03 Jan 2021, 13:38
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6352

Re: PostgreSQL: product search with multiple terms

thank you! - tested the newer code; it combines search terms with logical "OR". For our purpose an "AND"-combination would be better. So we plan to use the "older" code with ' & ' Do you plan any configurations (eg. in shop.php) how search terms are combined or are ...
by columbo
03 Jan 2021, 11:27
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6352

Re: PostgreSQL: product search with multiple terms

The provided code did not solve it at first run. But after replacing: $params[1] = join( ' | ', $strings ) . ' | "' . join( ' <-> ', explode( ' ', $search ) ) . '"'; with the original line: $params[1] = '\'' . join( ' & ', $strings ) . '\''; its working fine now ! Here the complete cod...
by columbo
02 Jan 2021, 11:55
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6352

Re: PostgreSQL: product search with multiple terms

Unfortunately it doesn't solved the issue. while entering "term1 term2" (without +) only search suggestions for term1 are presented (term2 ignored). After clicking "enter" the error message is shown. while entering "term1 + term2" (with +), correct search suggestions (o...
by columbo
30 Dec 2020, 19:36
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6352

PostgreSQL: product search with multiple terms

Hi, using aimeos 2020.10 and PostgreSQL 9.5 DB: Product search (text search) with a single term like eg. "term1" works fine. But searches with multiple terms separted by space eg. "term1 term2" cause an error: "A non-recoverable error occured" and in log SQLSTATE[42601]...
by columbo
28 Dec 2020, 10:07
Forum: Laravel package
Topic: tree: no sub-categories on detail page
Replies: 1
Views: 835

tree: no sub-categories on detail page

Hi, we provide the tree menu navigation with dropdowns; so all (sub-)categories should be displayed on all pages at any time. This worked finde until 2020.07; now after update to 2020.10 on catalog list page: all sub-categories (cat-x-y) are displayd as expected on catalog detail page: only categoie...
by columbo
15 Oct 2020, 15:27
Forum: Laravel package
Topic: Customer's wishing order date delivery
Replies: 3
Views: 1493

Re: Customer's wishing order date delivery

Hi, we added the "Date"-Provider to the "Delivery"-service and set "date.minimumdays". Is there also a setting like "date.minimum hours " available? Also tried "date.minimumdays" like 0,5 or 0.5 etc. but didn't work. If not, any other recommendations...
by columbo
14 Oct 2020, 18:18
Forum: Laravel package
Topic: deactivated products in sitemap
Replies: 4
Views: 1555

Re: deactivated products in sitemap

yes, now its working fine - great
thanks!
by columbo
14 Oct 2020, 10:25
Forum: Laravel package
Topic: deactivated products in sitemap
Replies: 4
Views: 1555

Re: deactivated products in sitemap

using Aimeos 2020.07
Sitemap xml is created daily, but as mentioned, contains also products that have been deactivated some months before
by columbo
13 Oct 2020, 11:32
Forum: Laravel package
Topic: deactivated products in sitemap
Replies: 4
Views: 1555

deactivated products in sitemap

Hi,

our aimoes sitemap xml contains all, also deactivated products.
Why are deactivated products also listed in the xml and how can we exclude those products?

thanks