techquity / aero-product-upsells
There is no license information available for the latest version (6.6-alpha) of this package.
A module to allow admin to add products to cross/up sell against other products
Package info
github.com/techquityltd/aero-product-upsells
pkg:composer/techquity/aero-product-upsells
6.6-alpha
2021-09-08 19:52 UTC
Requires
- aerocommerce/admin: ^0|^1
- aerocommerce/core: ^0
- aerocommerce/elastic-search: *
- maatwebsite/excel: ^3.1
Requires (Dev)
- orchestra/testbench: ^4.0
This package is auto-updated.
Last update: 2026-06-26 22:26:32 UTC
README
Add to your Aero project using the following composer command:
composer require techquity/aero-product-upsells
Add it your project by running:
php artisan migrate
php artisan vendor:publish --tag=aero-product-upsells
Usage
To access the collection in your Twig files:
{% for upsell in cross_products(product, 'COLLECTION_NAME') %}
{% set variant = upsell.variants | first %}
//PRODUCT DETAILS HERE
{% endfor %}
You can also specify a limit on the number of products {% for upsell in product_upsells(product, 'COLLECTION_NAME', 5) %} ...
Adding collections
- To add a collection, go to Admin > Modules > Cross-sell products
- Select a product you'd like to link other products to
- Click create a collection
- Add a collection
-- This collection can then be used to link products together via the COLLECTION_NAME in the front-end component above
Linking products
- To add a collection, go to Admin > Modules > Cross-sell products
- Select a product you'd like to link other products to
- Select a collection to link within
- Select the products you'd like to link
- Click 'Link products'