Advanced Search
Search Results
349 total results found
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...
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...
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-...
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...
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...
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...
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...