Search found 126 matches

by columbo
24 Sep 2021, 07:19
Forum: Laravel package
Topic: Display custom field in user profile and mail
Replies: 7
Views: 1978

Re: Display custom field in user profile and mail

sorry, copy/paste mistake, I already have: $this->summaryBasket->getAddress( 'delivery' ) how can I print out the value of the custom field custid? <?php foreach( $this->summaryBasket->getAddress( 'delivery' ) as $addr ) : ?> <?= $addr->get( 'custid' ); ?> <?php endforeach; ?> does not return any va...
by columbo
23 Sep 2021, 20:33
Forum: Laravel package
Topic: Display custom field in user profile and mail
Replies: 7
Views: 1978

Display custom field in user profile and mail

Hi, I added a custom field to customer's address using a Address\Decorator: namespace Aimeos\MShop\Customer\Manager\Address\Decorator; class Myproject extends \Aimeos\MShop\Common\Manager\Decorator\Base { private $attr = [ 'custid' => [ 'code' => 'custid', 'internalcode' => 'lvuad."custid"...
by columbo
23 Jun 2021, 20:06
Forum: Laravel package
Topic: top products by customer, controller, view
Replies: 1
Views: 2293

top products by customer, controller, view

Hi, we'd like to provide in the customer-profiles a list of their 10 most frequently bought products. (quantity of products / customer). I already found this forum post: https://aimeos.org/help/laravel-package-f18/how-can-get-bestsellers-or-most-popular-products-t1193.html $manager = \Aimeos\MShop::...
by columbo
17 Jun 2021, 20:08
Forum: Laravel package
Topic: Add new customer address field in JQAdm backend - Decorator
Replies: 2
Views: 3213

Add new customer address field in JQAdm backend - Decorator

Hi, I'd like to add in the Aimeos JQAdm/ admin-backen a new field to Customer > Address: Unbenannt.PNG already added the field in: \ext\ai-admin-jqadm\admin\jqadm\templates\customer\item-address-standard.php created a decorator: \ext\<my-extension>\lib\custom\src\MShop\Customer\Manager\Address\Decor...
by columbo
09 Jan 2021, 13:38
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6306

Re: PostgreSQL: product search with multiple terms

ohh, yes indeed :oops:
we are using client/html/catalog/lists/sort => 'code'

is it possible to list products by code in category lists (without any search terms)
but to list by relevance (and not by product code) when search term(s) is/are used?
by columbo
09 Jan 2021, 11:50
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6306

Re: PostgreSQL: product search with multiple terms

The config.php setting was correct, but could not finde a PgSQL protocol entry before, saved config.php file again and now its listed - anyway, here the logged PgSQL query: (term1 = "paprika"; term2 = "rot") Class: Aimeos\MShop\Index\Manager\PgSQL SELECT mpro."id" , MIN...
by columbo
09 Jan 2021, 09:17
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6306

Re: PostgreSQL: product search with multiple terms

tried it once again; results are not ranked by phrase queries
A product that exactly matches the search term is listed somewhere in between of the result product list

How can I retrieve the search query? Set log/manager/standard/loglevel to 7, but could not find the query .
by columbo
03 Jan 2021, 14:29
Forum: Laravel package
Topic: PostgreSQL: product search with multiple terms
Replies: 15
Views: 6306

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: 6306

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 ...