366 results
for “install a theme”
Sorted by relevance
Developer Documentation / Payment Drivers
How do I support express checkout in my payment driver?
If the payment gateway stores customer information, this can be used to populate the contact information, billing and/or shipping address.
To specify that the payment gateway supports the express checkout ...flow, use the
Aero\Payment\OffersExpressCheckou...
General / Faq
How do I download the code?
Start by registering with us at https://agora.aerocommerce.com/registerAgora account to create and manage your stores, agency info and users.
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 gettin ...g, and whether the price they’re see ...ing is specifically for them (such as a price caused by them being in a specific customer group).
Listi...
Catalog Management / Introduction
Introduction to categories
Categories allow you to group similar products together. They provid ...e a heirarchical structure, this makes it easy for your customers to drill d ...specific product groups.
See "What is a category?
A typical high level categories list;
A typical drilled...
Catalog Management / Introduction
Introduction to collections
Collections are a way to dynamically group products together. The ... grouping criteria includes tags, manufacturers, price range, price status and pand publish date.
ate.
See "What is a collection?
A typical collections list;
Content Management / Blocks
What is the blocks list?
Your blocks list shows all of you current blocks and includes the label and key of each block. This allows you to quickly check key d ...etails and quickly drill into your block ...s for further information.
Storefront Developer Documentation / Introduction
Introduction to image factory
The Aero Image Factory allows you to scale images appropriately and therefore accelerate pate page lage load tiad times.
See "How do I use Image Factory?
Content Management / Combinations
What is the combinations list?
Your combination list shows all of you current combinations and includes the label and url of each combination. This allows you to quickly check key d ...etails and quickly drill into your combi ...nations for further information.
Example Combination List;
Content Management / Pages
What is the pages list?
Your pages list shows all of you current pages and includes the label and url of each combination. This allows you to quickly check key d ...etails and quickly drill into your pages for further information.
Example Pages List;
Developer Documentation / Configuration
How do I register new permissions?
// add a single permission
\Aero\AdminAdmin\Permissions::add('add('custom');
// add multiple permissions
\Aero\AdminAdmin\Permissions::add(['add(['custom', 'custom.view', 'cu ...stom.manageage']);
Developer Documentation / Customization
How do I remove the manufacturer from the product slug/url?
The manufacturer name is automatically prepended to the product slu ...). If you wish for this to not happen you can set the static Aero\Catalog\Models\Product::$slugContainsManufactacturerboolean an to falsalse.
<?php
namespace Acme\MyModule;
use Aero\Catalog\M...
Developer Documentation / Introduction
Introduction to transformers
Transformers are used by the admin on some edit pages to transform data from PHP into an json encoded array that can be passed to Vue.
See our section on admin transformers for more information.
Developer Documentation / Introduction
Introduction to Laravel PHP Framework
The Aero platform is built using the Laravel PHP framework
Before developing with Aero, we recommend that you become acquainted with the core concepts of ...Laravel. We recommend the following ...resources:
The official Laravel documentation is a gre...
Developer Documentation / Response Builders
How do I change the response view?
For responses that return HTML, a Twig view file is used. Whilst ...these are originally defined, the view can be changed. For example, to change the product page view based on product data:
\Aero\Store\Http\Responses\Product ...Page::extend(function ($page) {
...
Storefront Developer Documentation / Introduction
Introduction to the breadcrumb
Aero includes breadcrumb navigation as standard. Breadcrumbs allow users to easily track and access the pages they have visited within your storefron ...t.
See our section on breadcrumbs for more information.
Catalog Management / Introduction
Introduction to products
Products are the main focus of your catalog management and can be split into 2 main types:
Single Products - Variant Pant Products
See "What are Products?
A typical products list
Content Management / Redirects
What is the redirects list?
Your redirtects list shows any redirects you currently have setup, along with their from and to urls and the status code.
Developer Documentation / Introduction
Introduction to pipelines
Pipelines provide a convenient way to manipulate a given payload. This payload can be an object or a simple string.
See our section ...on pipelines for more information