soft2do/frontend-editing

Enable editors to work with the content in the most intuitive way possible Is Extended from Typo3 Frontend editing

Installs: 71

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

Type:typo3-cms-extension

2.8.0 2023-05-23 14:50 UTC

README

TYPO3 TYPO3 TYPO3 Build Status

TYPO3 frontend editing (frontend_editing)

Extended From Original Extension This package gives frontend editing capability to TYPO3 CMS, the editor used is Ckeditor.

Documentation

For all kind of documentation which covers install to how to develop the extension:

Local Documentation

Online Documentation

Donate to the Frontend Editing for TYPO3 project

To Add JS / CSS Files To Front End Editing

plugin.tx_frontend_editing {
	settings {
		enableDefaultRightBar.50 = 10
		cssFiles{
			10 = EXT:extension/Resources/Public/Css/Backend/frontend_editing_override.css
		}
		jsFiles{
			10 = EXT:extension/Resources/Public/Css/Backend/frontend_editing_override.js
		}
	}
}

enableDefaultRightBar is To enable or Disable the default style

To Override on Default Color

plugin.tx_frontend_editing {
	settings {
		defaultColors{
		    primaryColor.10=red
		    secondaryColor.10=green
    		}
	}
}

To add Drop Zone Area

Import Core In html

xmlns:core="TYPO3\CMS\FrontendEditing\ViewHelpers"

Call Drop Zone Area With

 <core:DropZone></core:DropZone>  
 <core:DropZone colPos="{colpos}" parentUid="{parentUid}"></core:DropZone>