Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/collective/volto-subfooter
Volto addon for a customizable subfooter
https://github.com/collective/volto-subfooter
Last synced: 2 months ago
JSON representation
Volto addon for a customizable subfooter
- Host: GitHub
- URL: https://github.com/collective/volto-subfooter
- Owner: collective
- License: mit
- Created: 2021-08-31T13:15:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T11:08:21.000Z (4 months ago)
- Last Synced: 2024-11-05T00:34:58.353Z (2 months ago)
- Language: JavaScript
- Size: 140 KB
- Stars: 2
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-volto - volto-subfooter
README
# volto-subfooter
Volto addon for a customizable subfooter.
Intended to be used with [collective.volto.subfooter](https://github.com/collective/collective.volto.subfooter).Install with mrs-developer (see [Volto docs](https://docs.voltocms.com/customizing/add-ons/)) or with:
```bash
yarn add volto-subfooter
```Created with [voltocli](https://github.com/nzambello/voltocli).
If you are using Volto < 16, then use v1.1.0.
## Usage
To customize the `SubFooterConfigurationForm` component, you can now create your own component in your site and replace it using the Volto component registry in your site config file:
```javascript
import MySubFooterConfigurationForm from "./src/MySubFooterConfigurationForm";config.registerComponent({
name: "SubFooterConfigurationForm",
component: MySubFooterConfigurationForm,
});
```