In classic UI not able to create hyperlink in RTE | Community
Skip to main content
Adobe Champion
September 25, 2016
Solved

In classic UI not able to create hyperlink in RTE

  • September 25, 2016
  • 3 replies
  • 2461 views

Hi All ,

I am using 

<links        jcr:primaryType="nt:unstructured"        features="*"/>

plugin to create hyperlink in RTE , but in console it's showing me error "cannot read property length of null"  .      All other RTE plugins are working except link plugin  and I am not able to create hyperlink .

 

Can anyone suggest what I am missing .

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by kautuk_sahni

Hi 

Reference link:- http://www.wemblog.com/2011/10/how-to-make-sure-that-links-are-always.html

//

You can add x-cq-linkchecker="valid" parameter in the <a> tag to make sure that links are always mark as valid by CQ. In this case link checker will check the link but will mark it valid.

You can optionally use x-cq-linkchecker="skip" in the <a> as well. In this case link checker will not even check for validity for link.

Option 2: You can disable external link checker entirely by going to felix console

Option 3: Additionally you can add override pattern to disable link checking for certain domain

~kautuk

3 replies

Adobe Employee
September 26, 2016

Add x-cq-linkchecker="valid" parameter in the <a> tag to make sure that links are always mark as valid by CQ.

kautuk_sahni
Community Manager
kautuk_sahniCommunity ManagerAccepted solution
Community Manager
September 27, 2016

Hi 

Reference link:- http://www.wemblog.com/2011/10/how-to-make-sure-that-links-are-always.html

//

You can add x-cq-linkchecker="valid" parameter in the <a> tag to make sure that links are always mark as valid by CQ. In this case link checker will check the link but will mark it valid.

You can optionally use x-cq-linkchecker="skip" in the <a> as well. In this case link checker will not even check for validity for link.

Option 2: You can disable external link checker entirely by going to felix console

Option 3: Additionally you can add override pattern to disable link checking for certain domain

~kautuk

Kautuk Sahni
Adobe Champion
October 1, 2016

Kanika Gera wrote...

Add x-cq-linkchecker="valid" parameter in the <a> tag to make sure that links are always mark as valid by CQ.

 

Hi Guys , 

 Thanks for your responses .I know of x-cq-linkchecker="skip" .

 It seems `my question is misunderstood . I was earlier having issue that hyperlink which I created using RTE plugin was not working and plugin not able to create hyperlink .  Then I initialized plugins in different way and then it worked .