Search found 14 matches

by Sabir_Ali
08 May 2024, 05:56
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 2
Views: 464

Re: New added product preview image (in 720) is not shown in product details page.

Thank you for your replay. > Can you share the complete configuration in your controller.php file? - Yes. I share the config/controller.php file in attachments. > Did you overwrite the catalog/detail template? - Yes. We are using our own theme in package and the template was modified by another deve...
by Sabir_Ali
06 May 2024, 13:40
Forum: Laravel package
Topic: New added product preview image (in 720) is not shown in product details page.
Replies: 2
Views: 464

New added product preview image (in 720) is not shown in product details page.

PHP: 8.2.7 Laravel Framework: 10.48.4 System: Debian GNU/Linux 12 Aimeos Laravel v2023.10 I had an issue in opening (new added) product details page, when I get an array error. So I temporary fixed it by adding [ 'maxwidth' => 720, 'maxheight' => 960, 'force-size' => 1, ], into the aimeos-core/confi...
by Sabir_Ali
24 Apr 2024, 12:42
Forum: Laravel package
Topic: How to clear basket on frontent when custom checkout controller used?
Replies: 2
Views: 4569

How to clear basket on frontent when custom checkout controller used?

PHP: 8.2.7 Laravel Framework: 10.48.4 System: Debian GNU/Linux 12 We integrate another theme and we use blade files as templates for all new views. My task now is to implement checkout process on our own view template. But I use my custom controller for that. Almost everything works fine except clea...
by Sabir_Ali
10 Apr 2024, 06:36
Forum: Laravel package
Topic: What is the difference between all the tables where user data used?
Replies: 3
Views: 13047

What is the difference between all the tables where user data used?

PHP: 8.2.7 Laravel Framework: 10.48.4 System: Debian GNU/Linux 12 My task is to implement users checkout and shipping functionality. But there are a couple of tables where addresses and other many the same columns used: users users_address mshop_customer mshop_customer_address mshop_order_address I ...
by Sabir_Ali
01 Mar 2024, 11:53
Forum: Laravel package
Topic: How to retreave New Arrivals in another view?
Replies: 4
Views: 41737

Re: How to retreave New Arrivals in another view?

I solved my issue and I want to share how I did it. The main problem was that the main page has been written in PHP (I mean it is not blade file) and has a complex slider. But the part of code where I iterate the newArrivals was included into blade file. And I couldn't make these two files work toge...
by Sabir_Ali
01 Mar 2024, 10:53
Forum: Laravel package
Topic: How are Best Sallers determined in the system?
Replies: 1
Views: 20320

How are Best Sallers determined in the system?

By what criteria is the Best Saller group determined: manually by rating, by logic based on the number of products sold, or is it just an abstract category that is assigned manually by administrators?
by Sabir_Ali
26 Feb 2024, 08:12
Forum: Laravel package
Topic: How to retreave New Arrivals in another view?
Replies: 4
Views: 41737

Re: How to retreave New Arrivals in another view?

Thank you for response. No, I don't need a manageable list via CMS module. My goal is very simple right now. I just need to get a product list by a "controller" or from context to make a filter on it (for example by date). And this list will be something, that we can call a "New Arriv...
by Sabir_Ali
22 Feb 2024, 08:09
Forum: Laravel package
Topic: How to retreave New Arrivals in another view?
Replies: 4
Views: 41737

How to retreave New Arrivals in another view?

PHP: 8.1.2-1ubuntu2.14 Laravel Framework: 10.43.0 System: Ubuntu Gnu Linux 22.04 We installed another theme and trying to customize it to work with the platform. My task is to get the New Arrivals list in main page (PHP file) and show in a view specified by the theme. How should I approach this prob...
by Sabir_Ali
19 Feb 2024, 10:07
Forum: Laravel package
Topic: Search products function when adding new fields into Product.
Replies: 9
Views: 72672

Re: Search products function when adding new fields into Product.

I apologize for my inattention. :oops: Now it works fine. Thanks a lot! I would like to take this opportunity to ask. When I will add the logic to these attributes, where would you recommend to place it? Will I need to use more advanced approach, for example my own manager? Or using the Laravel best...