Skip to main content
366 results for “install a theme”
Sorted by relevance
Developer Documentation / Settings
How do I access a custom setting?
You can access a setting by using the settingfun ...ction that is available in PHP, Blade, and Twig. You simply need to pass your setting group name, a full stop, and then the settings name. setting(‘acme-my-module.allow_list’)
Developer Documentation / Admin Transformers
What are the available transformers?
The following classes are in the Aero\Admin\Transformersnamespace. Class Description AttributeTransformer This transformer is used in the ProductT ...ransformer to transform the product's attribute groups. BaseVariantTransformer This transformer is use...
Catalog Management / Products
What are the standard bulk actions for products?
...ore includes the following bulk actions as standard Delete products - Tag products - Untag products - Categorise products - Edit publish ... date - Activate products - Deactivate products - Assign manufacturer - Set additional attributes - Reset red...
Developer Documentation / Settings
What are the settings available to developers?
Settings allow you to add dynamic values to your modules that can be modified by admin users easily through the admin. The values of your settings (unless th ...e value is the default you set) are stored in json files inside o ...f your storage directory. └─ storage └─ ...
Developer Documentation / Pipelines
What are the available pipelines
Class Description Payload CartItemBuilder The process that occurs when adding an item to the cart. Extending this class allows for manipulation of the cart item before it is saved to the cart. Aero\Cart\CartItem $item ContentForHead The HTML content that will be ...
Developer Documentation / Admin Dashboard Lenses
How do I use a custom view for my dashboard lens?
You can optionally make your dashboard lens use a custom view. To do this you nee ...w you would like to use. <?php namespace Aero\Admin\Lenses; use Aero\Admin\AdminLens; use Illuminate\Http\JsonResponse; use Illumi ...nate\Http\Request; class TopShippi...
Developer Documentation / Events
How do I create a new event?
To create a new event, we first have to scaffold the class using Artisan in the project root directory: ... php artisan make:event Registered The above command scaffolds a class into the app/Eventsand we can modify it accordingly to our needs. After a...
Developer Documentation
Account Area
Account Area
Developer Documentation / Developer Faqs
Can I use Aero project credentials across multiple projects?
No, Credentials must not be shared between projects.
General / Announcements
Admin v1.3 Released
It's been almost 2 weeks since the last adminadmin release, ase, and wand we're back with more featureatures! We've continued to improv ...e the list views (we call these resource lists), and have added support for searching on specific columns. This ... offers several benefits, but the main ones ar...
Developer Documentation / Php Traits
Aero\\Common\\Traits\\CanHaveAdditionalAttributes
This trait can be added to a model class. When added your model will have the ability to have additional attributes. The trait adds the following methods: additionals Method This is the relationship method. This provides t ...he relationship to Aero\Common\Models\A...
Developer Documentation / Module Development
How do I register a custom Vue component for my module
To register a Vue component for our module, w ...e will need to create a JavaScript file for our components and in order to initialize 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...
General / Announcements
Admin v1.2 Released
The main focus of 1.2 are the improvements to the mail notifications screens, where the team have worked on making it easier for retailers to know what variables are available to pop into their email templates (for example, knowing {{ order.reference...
Catalog Management / Products
What is a variant product?
Variant products are complex products that have options such as colour or size. Variant products provide greater flexibility however required ... more set up and configuration than single products. Attributes are used to differentation between variants of the sam...
Developer Documentation / Events
What are event listeners?
Event listeners, as the name suggests, listen to events that have been assigned to them. This means that listeners have to first be manually mapped for which events they shoul ...d listen to. Mappings for Event Listenersare declared in the appropriate S...
Developer Documentation / Admin Dashboard Lenses
How do I create a custom dashboard lens?
To create a dashboard lens you need to create a class that extends Aero\Admin\AdminLensand implements the datamethod. data Method This method is executed ...every time the lens needs data (when the dashboard loads or when the dashboard date range is changed). ...
Developer Documentation / Admin Vue
How do I add custom clips to the redactor editor
Clips is a plugin for the Redactor editor that allows you to create a list of frequently used code to ... the editor. In the following example we will add a label clip that will allow users to use a label in the Redactor editor that looks like this: You need to u...
Developer Documentation / Admin Reports
How do I add exporters to my custom report?
To add an exporter to your report you ne ...d to ensure the report uses the Aero\Admin\Reports\Traits\CanExporttrait and that the exporter class is in the reports protected s ...tatic $exports array. By default Aero provides a CSV, XML, and JSON exporter. <?...