https://github.com/i-valchev/edit-this-page
Bolt 4 extension to add Edit page button for Editors on frontend pages
https://github.com/i-valchev/edit-this-page
Last synced: 3 months ago
JSON representation
Bolt 4 extension to add Edit page button for Editors on frontend pages
- Host: GitHub
- URL: https://github.com/i-valchev/edit-this-page
- Owner: I-Valchev
- License: mit
- Created: 2020-06-16T07:39:20.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-22T09:04:12.000Z (over 1 year ago)
- Last Synced: 2025-02-26T11:48:36.214Z (4 months ago)
- Language: Twig
- Size: 151 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ✏️ edit-this-page
Bolt 4 extension to add Edit page button for Editors on frontend pages.## Installation
```
composer require ivovalchev/edit-this-page
```----
## ConfigurationBy default, the Edit button will appear in the bottom right corner of a record page.
To override this setting, edit `config/extensions/ivovalchev-editthispageextension.yaml`:```yaml
position: bottom-right # top-left top-right bottom-left bottom-right
```-----
## Custom stylesBy default, the Edit button will take the styles of a button in your theme. To apply
specific styles, you can use the following css selector, e.g.:```css
.bolt-edit-this-page button {
background-color: orange;
}
```