Is there an easy way to create anchor links? I have a client who wants to link anchors of his page inside a rich text editor and I have absolutely no Idea how to achieve that.
Currently something like this happens:
"/page/page-components/Filename-of-Anchor"
But I want something like this
"/page#Anchorname".
So in the plugins section of the config/tinyMceConfig.config file you may be able to add:
<plugin loadOnFrontend="false">anchor</plugin>
I haven't tried this so it may or may not be enough. I'll try to give it a go today if I get the chance but hopefully this points you in the right direction at least.
Just to note that this may only put an anchor into the content (not the link itself) which is potentially what you're looking for. In that case, you'd need to get more creative and potentially make use of the grid system and or nested content - hard to give details without knowing the exact set up you're looking for.
Actually, I think I've overthought this. You can enable the Anchor plugin by editing the rich text editor data type. So in Umbraco, you'd go to Developer -> Data Types and click the rich text editor you want to enable it for. Check the box next to Anchor and it should then be enabled.
This terrible screenshot should point you to the right setting:
I have lots of anchors already placed on my website. My problem is that i cant find a way to easily link them without accidentally linking the whole page. like described above
If it's just setting the link up in the RTE with the standard link picker then you should just be able to put #anchor in as the link (see below image).
How do I create Anchorlinks in Umbraco
Umbraco v.7.6.5
Is there an easy way to create anchor links? I have a client who wants to link anchors of his page inside a rich text editor and I have absolutely no Idea how to achieve that.
Currently something like this happens: "/page/page-components/Filename-of-Anchor" But I want something like this "/page#Anchorname".
Hi Tim,
I believe TinyMCE does have an anchors plugin but it's disabled by default. Umbraco does however allow you to alter the TinyMCE config: https://our.umbraco.org/documentation/reference/config/tinymceconfig/
So in the plugins section of the
config/tinyMceConfig.config
file you may be able to add:I haven't tried this so it may or may not be enough. I'll try to give it a go today if I get the chance but hopefully this points you in the right direction at least.
Just to note that this may only put an anchor into the content (not the link itself) which is potentially what you're looking for. In that case, you'd need to get more creative and potentially make use of the grid system and or nested content - hard to give details without knowing the exact set up you're looking for.
Actually, I think I've overthought this. You can enable the
Anchor
plugin by editing the rich text editor data type. So in Umbraco, you'd go toDeveloper -> Data Types
and click the rich text editor you want to enable it for. Check the box next toAnchor
and it should then be enabled.This terrible screenshot should point you to the right setting:
I have lots of anchors already placed on my website. My problem is that i cant find a way to easily link them without accidentally linking the whole page. like described above
If it's just setting the link up in the RTE with the standard link picker then you should just be able to put
#anchor
in as the link (see below image).is working on a reply...