Hi everyone!
I have Links on my front end to Create a New page, Edit the current Page, and to add Content, all of which work fine, except the Create New Page link. The problem arises when the user presses "Save and Close", and although a page is eventually created, instead of closing the edit window, and reloading the main page, the edit window comes up with a 404 Error!
Here is the Typoscript I use to create the edit panel:
Typoscript-Code:
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
| temp.editPanelPage = COA temp.editPanelPage { 10 = EDITPANEL 10 { allow = new label = Page:<b>%s</b><br /> Create Subpage } 20 = EDITPANEL 20 { allow = edit label = Edit Page } 30 = EDITPANEL 30 { newRecordFromTable = tt_content allow = new label = Create Record } } |
2) Additionally, I use the following tsconfig on be users to display the edit icons, but ideally only want to display my specific edit panel (as above), and not also display the default edit panel that is currently appended to each of the content elements. Is this possible?
Typoscript-Code:
1: 2: 3: 4: 5: 6: 7: 8: 9:
| admPanel { enable.edit = 1 hide = 1 module.edit.forceDisplayIcons = 1 } |
Thanks alot in advance for your help. (I'm using Typo 4.1, and essentially MTB)
Will