How do I remove a macro from the rich text editor?
It's generally really hard to remove a macro from the rich text editor, the cursor gets stuck and you just end up deleting content after the macro. If there is no content before the macro, it's imposible to position the cursor, and impossible to enter content before the macro.
Umbraco 4.7.1 and Chrome 15. Is this new or known?
Hmm. I've seen such a problem. That's not that difficult for me since I switch to the html view and insert an <p></p> before the macro tag in case of troubles, don't know however to what extent it could be acceptable for a regular user...
Yeah, it's not so much that it's impossible, but more that it's a nuisance. With your second option, it's generally inconsistent, you end up with content that follows the macro inside the macro block.
As for editors, they just don't understand this. Perhaps after a few weeks of using the CMS they learn to live with it, but it's never going to be fun for them. Especially if they need to go into the HTML view.
Definitely room for improvement, I'm opening a ticket...
I'm inserting a non-breaking space inside the paragraph so TinyMCE doesn't strip the empty tag afterwards.
I know this is kinda old but I didn't find the solution documented anywhere and the ticket somehow disappeared in the last 5 years. I've received many user complaints about this issue so, I hope this helps!
How do I remove a macro from the rich text editor?
It's generally really hard to remove a macro from the rich text editor, the cursor gets stuck and you just end up deleting content after the macro. If there is no content before the macro, it's imposible to position the cursor, and impossible to enter content before the macro.
Umbraco 4.7.1 and Chrome 15. Is this new or known?
Hmm. I've seen such a problem. That's not that difficult for me since I switch to the html view and insert an <p></p> before the macro tag in case of troubles, don't know however to what extent it could be acceptable for a regular user...
Hi Michiel
This is known I think, since I've also been wondering about how to remove macros myself.
However I usually do one of these...
1) Enter HTML view and remove the div containing the macro
2) Mark the macro with the cursor so the text turns blue and hit delete a couple of times
It's not ideal in any way but it has worked for me so far.
/Jan
Yeah, it's not so much that it's impossible, but more that it's a nuisance. With your second option, it's generally inconsistent, you end up with content that follows the macro inside the macro block.
As for editors, they just don't understand this. Perhaps after a few weeks of using the CMS they learn to live with it, but it's never going to be fun for them. Especially if they need to go into the HTML view.
Definitely room for improvement, I'm opening a ticket...
brb
http://umbraco.codeplex.com/workitem/30562
This can be fixed by modifying line 64 of umbraco/plugins/tinymce3/insertMacro.aspx .
Just replace
by
I'm inserting a non-breaking space inside the paragraph so TinyMCE doesn't strip the empty tag afterwards.
I know this is kinda old but I didn't find the solution documented anywhere and the ticket somehow disappeared in the last 5 years. I've received many user complaints about this issue so, I hope this helps!
is working on a reply...