Search found 41 matches

by BrianMecler
21 Mar 2024, 19:32
Forum: Help
Topic: Default variant selection
Replies: 1
Views: 17291

Default variant selection

Laravel Framework v10.45.1, php8.1-fpm, aimeos/aimeos-laravel 2023.10.7 Hello, I have a product that has 3 variants. When I look at the product page on the front end, I am able to click the dropdown and choose my variant. Is it possible to configure the default variant that is selected when arriving...
by BrianMecler
21 Mar 2024, 12:49
Forum: Help
Topic: Question about swiffy-slider-item-ratio
Replies: 2
Views: 22551

Re: Question about swiffy-slider-item-ratio

I did find that I have aimeos.css copied into my custom theme directory, I found and changed the value there: /* Theme: Black&White */ :root { --ai-bg: #FFF; --ai-bg-alt: #F6F6F6; --ai-primary: #282828; --ai-primary-alt: #282828; --ai-secondary: #555; --ai-secondary-alt: #555; --ai-tertiary: #CC...
by BrianMecler
21 Mar 2024, 11:55
Forum: Help
Topic: Question about swiffy-slider-item-ratio
Replies: 2
Views: 22551

Question about swiffy-slider-item-ratio

Laravel Framework v10.45.1, php8.1-fpm, aimeos/aimeos-laravel 2023.10.7 Hello, In my config/shop.php I have placed the follow code to try to make the image previews not add padding around my product images: 'controller' => [ 'common' => [ 'media' => [ 'product' => [ 'previews' => [[ 'maxwidth' => 80...
by BrianMecler
27 Feb 2024, 22:11
Forum: Help
Topic: Intercepting Frontend Product Controller with Product Decorator
Replies: 9
Views: 90705

Re: Intercepting Frontend Product Controller with Product Decorator

Thank you Aimeos, I could go that route, but I would need to prevent indexing by using a specific meta tag on that product. Using robots.txt will prevent crawling, but not indexing (ie: the case of an external link). I see some options on the product to add meta keywords and description, but no cust...
by BrianMecler
25 Feb 2024, 21:45
Forum: Help
Topic: Intercepting Frontend Product Controller with Product Decorator
Replies: 9
Views: 90705

Re: Intercepting Frontend Product Controller with Product Decorator

I want to use the URL of this product in Google Ads, but I dont want the product to show up in search engines. I believe that Google will try to index the product since I used it in an Ad. So my idea would be to masquerade the product if someone found it organically via a search engine.
by BrianMecler
24 Feb 2024, 22:04
Forum: Help
Topic: Intercepting Frontend Product Controller with Product Decorator
Replies: 9
Views: 90705

Re: Intercepting Frontend Product Controller with Product Decorator

Hello, I have been running this command between tests: php artisan optimize:clear I have also been running composer update between tests in the event that the files from my extension need to be picked up again. There might be an easier way to do what I am trying to accomplish: I have a product in th...
by BrianMecler
23 Feb 2024, 20:24
Forum: Help
Topic: Intercepting Frontend Product Controller with Product Decorator
Replies: 9
Views: 90705

Re: Intercepting Frontend Product Controller with Product Decorator

Testing further, I do believe that that my decorator is being honored. I can override the method for 'public function __construct' and see that my debugger enters that function in the 'Specialvariant' class. So maybe that get() function is just never being called/used from the Standard class when di...
by BrianMecler
23 Feb 2024, 13:50
Forum: Help
Topic: Intercepting Frontend Product Controller with Product Decorator
Replies: 9
Views: 90705

Intercepting Frontend Product Controller with Product Decorator

Laravel Framework v10.45.1, php8.1-fpm, aimeos/aimeos-laravel 2023.10.7 Hello, I want to be able to display a special variation of a product if the user passes a special query parameter in the request. I am struggling to do that. I am currently trying to to this with a Product Decorator in my own ex...
by BrianMecler
30 Sep 2023, 20:41
Forum: Help
Topic: Customize label for Attribute Type
Replies: 1
Views: 10648

Customize label for Attribute Type

Hello, Laravel Framework 10.13.1, php8.1-fpm, aimeos/aimeos-laravel 2023.04.2 I created a selection product which consists of two articles which of of the type 'Interval'. On the product page, the label 'Interval' is shown above the dropdown list to select the articles. Is there a way to customize t...
by BrianMecler
16 Sep 2023, 13:38
Forum: Help
Topic: Pass data from delivery service decorator to view
Replies: 5
Views: 36946

Re: Pass data from delivery service decorator to view

Thank you Aimeos, When I implement the following in $feConfig: $feConfig = [ 'fedex.test1' => [ 'type' => 'string', 'code' => 'fedex.test1', 'label' => 'This is my label', 'default' => '2-3 days', 'public' => false ], 'fedex.test2' => [ 'type' => 'string', 'code' => 'fedex.test2', 'label' => 'This i...