Wysiwyg adding / in front of link URLs

5 posts by 2 authors in: Forums > CMS Builder
Last Post: January 18, 2010   (RSS)

Re: [garyhoffmann] Wysiwyg adding / in front of link URLs

By Chris - January 18, 2010

Hi Gary,

By default, the WYSIWYG will convert all URLs to be absolute. You can easily change this behaviour by modifying a bit of JavaScript in a PHP file:

Open up cmsAdmin/lib/wysiwyg.php and search for relative_urls. Change this line:

relative_urls : false,

to this:

relative_urls : true,

As suggested by a comment at the top of the file, you can save the file as wysiwyg_custom.php and it will get loaded instead of wysiwyg.php -- and won't get overwritten when you upgrade.

I hope this helps! Please let me know if you have any questions.
All the best,
Chris

Re: [chris] Wysiwyg adding / in front of link URLs

By garyhoffmann - January 18, 2010

Thank you!

Re: [garyhoffmann] Wysiwyg adding / in front of link URLs

By Chris - January 18, 2010

No problem; glad I could help. :)
All the best,
Chris

Re: [chris] Wysiwyg adding / in front of link URLs

By garyhoffmann - January 18, 2010

I also found reference to a settings called "convert_urls" that you can set to true/false that also seems to help. Don't know if it's necessary, but it also doesn't appear to hurt.

Thanks again.
Gary