Search found 54 matches

by mahammadareef
26 Dec 2022, 12:33
Forum: Laravel package
Topic: designing new menu
Replies: 1
Views: 430

designing new menu

hi team


I want to design my own menu, by keeping my old menu safe, I don't want to overwrite the existing one


I want to know the steps to fulfill this...
by mahammadareef
23 Dec 2022, 14:36
Forum: Laravel package
Topic: recently viewed products
Replies: 3
Views: 695

Re: recently viewed products

I want to store recently viewed products permanently but in aimeos when I log out all the recently viewed products will be cleared,, so how can i handle it ...i dont want those products will be removed from my list when customer logs out
by mahammadareef
21 Dec 2022, 11:17
Forum: Laravel package
Topic: recently viewed products
Replies: 3
Views: 695

recently viewed products

Hello Team Aimeos, I want to implement a recently viewed product listing in my aimeos site, when the customer is not logged in I want to store the customer product page visits in session whenever the customer logged in to a system that time these products will be shifted to the database table (i kno...
by mahammadareef
15 Dec 2022, 10:00
Forum: Laravel package
Topic: want to list child categories
Replies: 7
Views: 1756

want to list child categories

I wanted to show the next child categories lists of parent categories in the catalog List page when the parent category is active in catalog List page ............. please explain to me with steps to fulfill this ... for checking, I am uploading an image ... Thanks in advance ... Screenshot 2022-12-...
by mahammadareef
13 Dec 2022, 11:45
Forum: Laravel package
Topic: want to list all the categories with one go
Replies: 1
Views: 404

want to list all the categories with one go

I wanted to display all the categories (with no level restrictions ) on the home page, To achieve this I created a new component with the help of referring catalog tree component logic, and that works but I can't be able to fetch all the category items, it fetches only up to level 2 node of category...
by mahammadareef
05 Dec 2022, 20:40
Forum: Laravel package
Topic: creating managers
Replies: 15
Views: 6789

Re: creating managers

public function search( \Aimeos\Base\Criteria\Iface $search, array $ref = [], int &$total = null ) : \Aimeos\Map { $context = $this->context(); $conn = $context->db( $this->getResourceName() ); $items = []; $required = ['contact']; $level = \Aimeos\MShop\Locale\Manager\Base::SITE_SUBTREE; $leve...
by mahammadareef
30 Nov 2022, 13:13
Forum: Laravel package
Topic: show product sclider based on product code
Replies: 3
Views: 770

Re: show product sclider based on product code

i tried with this code , $products = ( clone $cntl )->uses( $domains ) ->filter()->add( ['product.code' => ['demo-selection-article-3','demo-selection-article-4'] ] )->slice( 0,10 ) ->slice( 0,10 ) ->search(); it giving me this error /home2 Called unknown macro "filter" on class "Aime...
by mahammadareef
30 Nov 2022, 12:01
Forum: Laravel package
Topic: listing categories
Replies: 3
Views: 830

Re: listing categories

okay assume i added one coloumn is_branded_category , how to write filter option , if posssible please show it in this data() function of my component (here it retrives all the category tree ) public function data( \Aimeos\Base\View\Iface $view, array &$tags = [], string &$expire = null ) : ...
by mahammadareef
30 Nov 2022, 11:06
Forum: Laravel package
Topic: show product sclider based on product code
Replies: 3
Views: 770

Re: show product sclider based on product code

public function data( \Aimeos\Base\View\Iface $view, array &$tags = [], string &$expire = null ) : \Aimeos\Base\View\Iface { $texts = []; $context = $this->context(); $config = $context->config(); $cntl = \Aimeos\Controller\Frontend::create( $context, 'product' ); $template = $config->get( ...
by mahammadareef
30 Nov 2022, 09:48
Forum: Laravel package
Topic: show product sclider based on product code
Replies: 3
Views: 770

show product sclider based on product code

I have a requirement I want to show the list of products based on the product_codes list given on the admin side where I want to keep one option in the backend where I have to add product_code ...how to do this? please help me