docs
docs copied to clipboard
Documentation for Bolt.
When attempting to develop locally, it is impossible to load a `dev` extension into Bolt without either setting it to a `stable` release (which is obviously not good for a...
When i'm trying to use `embed` and paste code from youtube (`..`) - it gives and error:  My first thought was that `embed` field should allow using some lines...
In the select fieldtype page is missing the possibility to use the label/value object notation like: ```yaml myselect: type: select values: {'value_1': 'Value one label', 'value_2': 'Value Two Label'} ```...
If you take a look here, https://github.com/bolt/docs/blame/3.0/docs/extensions/intermediate/nut-commands.md#L39 you'll notice that argument is `$container` ```php protected function registerNutCommands(Container $container) { return [ new Nut\DropBearCommand(), new Nut\KoalaCommand($container), ]; } ``` If `KoalaCommand`...
We seem to have lost the documentation for the `upload` parameter on image fields: https://docs.bolt.cm/3.2/fields/image https://docs.bolt.cm/3.2/fields/imagelist https://docs.bolt.cm/3.2/fields/file https://docs.bolt.cm/3.2/fields/filelist It's documented now only in the cheatsheet.
Accroding to: https://github.com/bolt/docs/blob/3.5/docs/extensions/basics/about.md you should be able to install a very bare bones version of the extension system via the command: `composer create-project --no-install bolt/bolt-extension-stencil:^3.0 blah` however there's an error...
Unlike Soundcloud or Vimeo, when embedding Youtube videos you must use the address from the browser address bar, and not the share>copy link. The Youtube video will neither preview in...
on https://docs.bolt.cm/3.4/fields/templateselect the "Next" button at the bottom of the page links to Templating docs instead of linking to the next field type in the docs. Currently, the next button...
Since caching is more and more moved towards external systems like varnish or even better a full cdn system, we should provide some very generic guidelines on how to configure...
The [Using Widgets](https://docs.bolt.cm/3.3/templating/widgets#other-functionality) page has two different snippets for the `countwidgets` function, which give conflicting information. The first says _'Note that this function also requires the 'zone' parameter, which is...