Display featured products,campaign products on my homepage
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
- harshithvemula
- Posts: 33
- Joined: 19 Jul 2020, 16:27
Display featured products,campaign products on my homepage
I have a home page and i want to display featured products,campaign products etc on it.How to do that .Please see the attatchment for reference.
I have seen this post in typo3 but how to do it in laravel ? and also what code i need to add in blade files ?
post4020.html#p4020
The simplest way is to:
- Create a new category
- Assign products with list type "promotion" to this category
- Place the "catalog list" plugin on your home page
- Select the new category as default in the flexfrom of the plugin
- Add this configuration to the TypoScript config field in the flexform of the plugin:
CODE: SELECT ALL
client.html.catalog.lists.standard.subparts {
0 = promo
}
Tip: You can select the start category of the shown category tree in the "catalog filter" plugin, so the best place for categories that shouldn't show up is on the same tree level besides the selected category in the "catalog filter" plugin.
I have seen this post in typo3 but how to do it in laravel ? and also what code i need to add in blade files ?
post4020.html#p4020
The simplest way is to:
- Create a new category
- Assign products with list type "promotion" to this category
- Place the "catalog list" plugin on your home page
- Select the new category as default in the flexfrom of the plugin
- Add this configuration to the TypoScript config field in the flexform of the plugin:
CODE: SELECT ALL
client.html.catalog.lists.standard.subparts {
0 = promo
}
Tip: You can select the start category of the shown category tree in the "catalog filter" plugin, so the best place for categories that shouldn't show up is on the same tree level besides the selected category in the "catalog filter" plugin.
Re: Display featured products,campaign products on my homepage
In 2020.10, the new "catalog/home" component does that. If you want to add Aimeos to the home page as well, replace the route for "/" in ./routes/web.php by this line:
This will display the Aimeos catalog home component on the home page you you get a nice looking shop home page.
Code: Select all
Route::get('/', '\Aimeos\Shop\Controller\CatalogController@homeAction')->name('aimeos_home');
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

- harshithvemula
- Posts: 33
- Joined: 19 Jul 2020, 16:27
Re: Display featured products,campaign products on my homepage
i have categories named "Fashion" ,"Electronics", "Outfits", "Electricals" etc and i want to display only "Fashion" ,"Electronics" categories in a specific page. How to make a component like "catalog/fashion" or "catalog/electronics" in the same way as "catalog/home" so i can display them anywhere as i like. And also how to display only top 5 products in the category "fashion" or "electronics"
Re: Display featured products,campaign products on my homepage
If you don't assign a stage image, a short description and promotional products to the categories, they won't be shown in the catalog/home component. To limit the number of promotional products only to five, simply assign not more products of type "promotion" to the categories.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
