Skip to main content
366 results for “install a theme”
Sorted by relevance
Catalog Management / Attributes
How do I delete an attribute group?
Deleting attribute groups cannot be undone Step 1 - Login to ... your Aero Admin Console - Step 2 - Hover ov ...er the 'Catalog alog Manageanagemeagement' icon in the left hand menu Step 3 - Click on 'Attributes' Step 4 - Search for the attribute group(s) you would like...
Catalog Management / Attributes
How do I edit an attribute?
Step 1 - Login to your Aero Admin Console - Step 2 - Hover ov ...er the 'Catalog alog Manageanagemeagement' icon in the left hand menu Step 3 - Click on 'Attributes' Step 4 - Search for attribute group containing the attribute you would like to edit ...(more information here; "How do I search my a...
Developer Documentation / Listings And Search
How do I add custom facets to listing and search?
Faceted navigation in eCommerce allows customers the ability to refine down a catalog of products based on their filter criteria. In order to define facets against a document, you must first regist ...er the facet group. This should be done w ...ithin the **boot()**method of a ServiceProvideror the **setup()...
Developer Documentation / Extending Core Functionality
What are models and how do I use them?
All models provided as part of the Aero core platform are Eloquent models For example, if a module provided reviewsfor pro ...ducts, the reviewsmethod can be added to the Product model using a macro: \Aero\Catalog\alog\Models\Product::macro(acro('reviews', function () { ...
Developer Documentation / Admin Filters
How do I create a date range admin filter?
To create a date range admin filter you need to create a class that extends Aero\Admin\Filters\DateRangeAdminFilterand implements the handleDateRangemethod. handleDateRange Method This method is execut ...ed when a date is set and accepts 3 parameters. The fir...
Developer Documentation / General
How do I add a route to the CSRF exception list?
If you do not want your route to require a valid CSRF token Code To add a route to the exceptions list th ...rough code you need to add to the static VerifyCsrfToken::$exceptionsarray.ay. <?php namespace Acme\MyModule; use Aero\Common\Providers\ModuleServi...
Catalog Management / Products
What are bulk actions for products?
Bulk actions are a quick and easy way to apply mass changes across multiple products. With bu ...lk actions, you search, filter and select the appropriate products. Then simply select ...the action from the drop down menu. E ...xample Bulk Actions List;
Catalog Management / Attributes
How do I edit an attribute group?
Step 1 - Login to your Aero Admin Console - Step 2 - Hover ov ...er the 'Catalog alog Manageanagemeagement' icon in the left hand menu Step 3 - Click on 'Attributes' Step 4 - Search for the attribute group you would like to ... edit (more information here; "How do I search my a...
Catalog Management / Attributes
How do I delete an attribute?
Deleting attributes cannot be undone Step 1 - Login to ... your Aero Admin Console - Step 2 - Hover ov ...er the 'Catalog alog Manageanagemeagement' icon in the left hand menu Step 3 - Click on 'Attributes' Step 4 - Search for the attribute group(s) you would like ... to delete (more information here; "How do I search my a...
Developer Documentation / Resource Lists
How do I add a custom column to the order list?
As the orders list is a resource list you can add a custom column like this: More i ...nformation on resource lists can be found in the articarticle "How do I extend an existing Resource List? <?php ...namespace Acme\MyModule; use Aero\Admin\ResourceLists\OrdersRe...
Developer Documentation / Events
What are the events available?
Account AddressCreated - AddressDeleted - AddessUpdated - CustomerManualylCreated - CustomerRegistered - Custo ...merUpdated - CustomerChanged - PasswordResetRequest Cart CartEmptied - CartItemAdded - CartItemRemoved - CartItemUpdated - OrderCanceled - ...
Developer Documentation / Resource Lists
How do I add a custom column to the product list?
As the products list is a resource list you can add a custom column like this: More i ...nformation on resource lists can be found in the articarticle "How do I extend an existing Resource List? <?php ...namespace Acme\MyModule; use Aero\Admin\ResourceLists\Products...
Order Management / Orders
What are the default order statuses available?
There are a number of statuses that can be set for an order, many of these are set automatically when an action is performed on an order, however they can be set manually at any time. Cancelled - On Hold - Successful - ... Processing - Partially Dispatched - Dispatched ...
Storefront Developer Documentation / Checkout
How do I add a Custom CSS File to the Checkout?
You can add a custom CSS file to the checkout ... by creating a checkout.cssfile in your publi ...c directory. Example contents where we are changing the to use a black background: .header { background-color:#000000; } .header__progress li:before { ba...
Developer Documentation / Validation
What are the available validation requests?
Example: <?php namespace Aero\Store\Http\Requests; use Aero\Common\Requests\AeroRequest; class UpdateAddressRequest extends AeroRequest { /** * Dete ...rmine if the user is authorized to make this request. * * @ ...ool */ public function authorize() { $addres...
Developer Documentation / Listings And Search
How do I create a custom sort order for the listings pages?
When you set the sort get parameter in a listing pages url (e.g. ?sort=name-az), a method is called on the \Aero\Search\Elastic\Query\Builderclass (for name-az the method sortByNameAzis called). You can find the default sort by methods in the Aero\Search\Elastic\Concerns\CanB...
Developer Documentation / Introduction
Introduction to the account area
The account area provides an extendable area where your customers can view their orders and manage their accounts. See our section on the account area for more information.
Developer Documentation / Google Shopping Feed
How do I generate a Google Shopping feed?
In order to generate a Google Shopping feed, it is nec ...essary to install an Aero dependency in form of the aerocargo/google-shoppingpackage from agora.aerocommerce.com More developer-s ...pecific information about the Google Shopping feed can be found on the Google Shoppin...