Skip to main content
351 results
Sorted by relevance
Storefront Developer Documentation / Themes
What are the themes available?
We have a number of official themes available. These themes are designed to be used as a starting point for your project and have been meticulously crafted with conversion, speed and responsive design at their core. Our official themes are built using Tailwind...
Storefront Developer Documentation / Themes
How do I display the prices from my price list?
You can display what the sales price was before the price list was applied, how much of a discount the customer is getting, and whether the price they’re seeing is specifically for them (such as a price caused by them being in a specific customer group). Listi...
Storefront Developer Documentation / Themes
How do I use a custom Vue component in the storefront?
This repo (https://github.com/aerocargo/example-vue You need to make your component .vuefile(s) and your main .jsfile that will register all of the components. An example javascript structure can be found here in the repo (https://github.com/aerocargo/example-...
Storefront Developer Documentation / Themes
How to Implement Subscriptions on the Product Page
To implement subscriptions on your product page you’ll need to add some code to your themes product.twigfile that allows customers to see the available subscription plans and select the one they want. The code snippet below provides radio options that will all...
Storefront Developer Documentation / Themes
How do I implement subscriptions on the product page?
To implement subscriptions on your product page you’ll need to add some code to your themes product.twigfile that allows customers to see the available subscription plans and select the one they want. The code snippet below provides radio options that will al...
Storefront Developer Documentation / Themes
How do I give split listings names generated from their attributes?
This code example extends the Aero\Search\Elastic\Documents\ListingDocumentdocument to generate names for split listings from the attributes that the variant is made up of. You can learn more about extending the listing document here It’s important to note th...
Storefront Developer Documentation / Themes
Listing items per page
Update AppServiceProvider app>Providers>AppServiceProvider.php Add the following namespaces: use Aero\Store\Http\Responses\ListingsJson; use Aero\Store\Http\Responses\ListingsPage; use Aero\Store\Http\Responses\SearchJson; use Aero\Store\Http\Responses\SearchP...
Modules / General
How do I create a custom module?
When interacting with the admin, especially when making a custom module, it is important to require  aerocommerce/admin in the modules’ composer.json file. Scaffolding modules Modules can be created using artisan, a command line interface supplied with Larave...
Modules / Vue
How do I register a custom Vue component for my module?
To register a Vue component for our module, we will need to create a JavaScript file for our components and in order to initialise Vue. Link assets In order to link all the assets, which is a necessary step of registering a Vue component, we need to add a func...