Skip to main content
366 results for “install a theme”
Sorted by relevance
Storefront Developer Documentation / Introduction
Introduction to storefront structure
The following structural elements are used to create your Aero storefront: Pages - Layouts - Sections - Blocks
Catalog Management / Collections
How do I search my collections?
Step 1: Hover over the Catalog Management button in the left hand menu Step 2 - Select Collecti ...ons from the Catalog Management menu Step 3 - Enter your ...search term in the Searchinput at the top of the page Step 4 - Click 'Search&arch'
Catalog Management / Manufacturers
What is the manufacturer list?
Your manufacturers list shows your current ...manufacturers. You can view the manufacturer details by clicking on the manufacturer name, or the arrow icon. - You can view your internal manufacturer page by click on the manufacturer URL
Developer Documentation / Response Builders
How do I set the response status code?
There may be situations where the HTTP response status needs to be altered. By default, the returned status is 200, however, this can be changed by passing the new status code to the **setStatus()**method: \Aero\Store\Http\Responses\Product ...Page::extend(function ($page) { ...
Storefront Developer Documentation / Checkout
How do I change the logo in the checkout?
You can change the logo in the checkout by ...creating this file: resources/vendo ...r/checkout/sections/logo.twigand putting your logo contents in ...side of it. Example contents: <a hrea href="{{ route('home') }}" titl ...e="{{ trans("checkout::general.return_to_...
Developer Documentation / Response Builders
How do I set response headers?
When extending the response builder, you can set HTTP headers to be sent with the respons ...e: \Aero\Store\Http\Responses\Product ...Page::extend(function ($page) { $page->setHeage->setHeader('foo'ader('foo', 'bar�ar'); });