Rich Text - Auto Link URL?

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
aaron
Posts: 9
Joined: Wed May 20, 2009 8:19 pm

Rich Text - Auto Link URL?

Post by aaron »

Version of script: 3.2.2

Is there a setting/way to make the URLs in the rich text reply window automatically clickable links like in the plain text version? I reply with a lot of links and the time it takes to click the little link button really adds up at the end of the day :D
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: Rich Text - Auto Link URL?

Post by Klemen »

Good point. This should do the trick:

1. open file /inc/tiny_mce/tinymce.inc.php in a powerful text editor, such as Notepad++ (do not use Microsoft Notepad)
2. find

Code: Select all

plugins: 'charmap code codesample image link lists table',
3. change it to

Code: Select all

plugins: 'charmap code codesample image link lists table autolink',
4. if you want to open links in a new tab, also add this line below the above line:

Code: Select all

default_link_target: '_blank',
5. save, upload, refresh Hesk in your browser page, and test
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
aaron
Posts: 9
Joined: Wed May 20, 2009 8:19 pm

Re: Rich Text - Auto Link URL?

Post by aaron »

Awesome! Works perfectly. Have another drink! :D
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: Rich Text - Auto Link URL?

Post by Klemen »

Ha, thank you. I'm feeling a bit dizzy already :lol:
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
aaron
Posts: 9
Joined: Wed May 20, 2009 8:19 pm

Re: Rich Text - Auto Link URL?

Post by aaron »

:lol:
Post Reply