Skip to main content
349 results for “install a theme”
Sorted by relevance
Catalog Management / Manufacturers
How do I create a new manufacturer?
In order to create a new manufacturer for your store first navigate to the manufacturer listings page and cand click the "+ New Manufacturacturer" button at the top of the page. From here you will be presen ...ted with the form for creating a new manufacturer. The for...
Content Management / Combinations
How do I create a new combination?
In order to create a new combination for your store first navigate to the combinations listings page and cand click the "+ New Combinationation" button at the top of the page. Combination Information The first section is the co ...mbination label, search checkbox and ...
Storefront Developer Documentation / Themes
How do I add a contact form to my storefront?
Introduction Forms Location your_theme_name>ame>resources>views>forms Any files created inside this directory can be included on a page using age using {% form "contact&qact" %} Create a Contact Form Create your form in the forms location, for example contact.twig: <form action...
Catalog Management / Attributes
How do I create a new attribute?
Individual attributes are tied to their group, in order ... to create a new attribute you must first decide w ...hich group you want to add this new attribute to. First navigate to the attribute listings page and select the group you want to add new attributes or crea...
Developer Documentation / Admin Product Picker Component
What are the available props for the product picker?
...d prop. This is the URL for the API to get the products from. It’ ...s common to set this value to {{ route('admin.cataloatalog.alog.products.picker') }}. image-url-prefix String This is the ... image factory prefix to use for the prod ...uct image URLs. This is set by default ...
Storefront Developer Documentation / Checkout
How do I add a marketing opt-in to the checkout?
This article covers how to insert a checkbox into the checkout flow ..., that when ticked, will allow you to send information to a third party system. In order to add a marketing optionally opt-in to the checkout we fi ...to extend the CheckoutCustomerPageto inject our custom view that...
Developer Documentation / Admin Filters
How do I create a custom admin filter?
To create a custom admin filter you need to create a class that extends Aero\Admin\Filters\AdminFilterand implements the handle method. handle Method This method is execu ...ted on every request made to a report or resource list with yo ...ur filter and accepts 2 parameters. The fir...
Catalog Management / Attributes
What is an attribute?
Within Aero, attributes are used to differentiate versions of a product. This allows you to create variant products Attributes consist of the followi ...ng 2 elements: Attribute groups All attributes belong to an attribute group. Typical examples of attribute groups i...
Catalog Management / Products
How do I create a new product in the admin?
In order to create a new product for your store firs ...t navigate to the product listings page and click and click the "+ New Product" but ...ton at the top of the page. From here you will be presen ...ted with the form for creating a new product. The product ...
Storefront Developer Documentation / Themes
How do I add featured products to the homepage of my store?
Listing collections can be used to group products toge ...ther and display them on specified pages. Install Run this command at the root of your project compo ...ser require aerocargo/listing-collections Create your section Create the file; your_theme_name/res...
Storefront Developer Documentation / Themes
How do I convert a listings page into a landing page?
Update AppServiceProvider Add the following namespaces: use Aero\Catalog\Models\Category; use Aero\Responses\ResponseBuilder; u ...se Aero\Store\Http\Responses\Listing ...sPage; use Illuminate\Support\ServiceProvider; use ...Closure; Extend the listings page: class AppServiceProvider ext...
Catalog Management / Attributes
How do I create a new attribute group?
In order to create a new attribute group first navigate to the attributes listings page and cand click the "+ New Attribute Group" button at the top of the page. From here you will be presen ...ted with the form for creating a new attribute group. The form i...
Developer Documentation / Account Area
How do I configure the account area?
ENV Variables Variable Default Description AERO_ACCOUNT_AREA_THEME aerocommerce/account-area Defines the namespace that should be registered as having the views and resources for the account area. This should only be changed under unique circumstances....
Storefront Developer Documentation / Sections
What are the available storefront section parameters?
Sections can be easily parameterised. This brings more flex ...ibility and removes further duplication. Using parameters in Sections is quick, easy and powerful. Follow the steps be ...low to create and use a Section: Step 1 - Adding parameters to the Section ...
Developer Documentation / Php Traits
Aero\\Responses\\Traits\\HasSections
This trait can be added to a response builder class. It adds useful methods for managing sections of the page. There are other traits (HasBottomSections, HasTopSections, and HasSidebarSections) in the same namespace that add more section helpers (thes...
Developer Documentation / Admin Filters
How do I create a checkbox list admin filter?
To create a checkbox list admin filter you need to create a class that extends Aero\Admin\Filters\CheckboxListAdminFilterand implements the handleCheckboxListand checkboxesmethods. handleCheckboxList Method This met ...hod is executed when any checkboxes are checked and ac...
Storefront Developer Documentation / Themes
How to add sashes to your listing card / product page
There are several ways to achieachieve this featureature. We'll highlight a few below. Method 1: Using tags Assigning a tag group fag group for use as "sas "sashesashes" will allow you to bulk tag many products so that they have the same sash. Update AppServiceProvider Add the fo...
Developer Documentation / Settings
What are the available setting types?
Setting Description $group->array(‘allow_list’); Returns an arrarray.ay. $group->boolean(‘enabled’); Returns a boolean, true or falsalse. $group->eloquent('order_status', OrderStatus::class); Stores the key of the eloqu ...ent model you pass and returns an instance of th...