WYSIWYG editor: allowing targets of links.

Use GitHub to post feature requests for phpwcms.
Locked
GreenNuggs
Posts: 34
Joined: Fri 9. Apr 2004, 01:14
Location: Boston, MA. USA

WYSIWYG editor: allowing targets of links.

Post by GreenNuggs »

Oliver,

I'd like to be able to add the target of the link in the WYSIWYG. Yes, I can just edit the HTML, but for my users not so HTMLfluent :lol: they have a hard time understanding the concept.

If you have any suggestions on where to look to change it myself, that would be appreciated as well. Thanks.
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

No one will offer help... if they have to GUESS ~which~ EDITOR??? :wink:
argos
Posts: 135
Joined: Mon 15. Mar 2004, 20:02

Post by argos »

There is at least one of them that allows to so so. Don't feel like checking them all out, but try yourself and you'll find the answer.
Regards,
Jurgen Nijhuis
http://www.argosmedia.nl
GreenNuggs
Posts: 34
Joined: Fri 9. Apr 2004, 01:14
Location: Boston, MA. USA

Post by GreenNuggs »

I'm talking about the WYSIWYG editor when you ADD an article to PHPWCMS. Not an external editor. When you add an article, you can do plain text, HTML, WYSIWYG,etc. content types.

The button in the WYSIWYG editor, where you highlight the text, then click the button to make that text a link, a pop-up box comes up but has no option to make that link's target anything else. Whatever program or code that runs the WYSIWYG editor from WITHIN PHPWCMS, doesn't have an option. If I knew where to look for it, I could hack it. But quite frankly, I have no idea.
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

There is more than one possible WYSIWYG editor in phpWCMS. What is the setting for your "config.inc.php" line as follows:

Code: Select all

$phpwcms["wysiwyg_editor"]    = 3;        //0 = no wysiwyg editor, 1 = HTMLarea, 2 = FCKeditor, 3 = browser based, 4 = spaw
BTW, you can ~try~ one of the others, some work better than others, depending on which browser your user's will have, whether mod_rewrite rules will be in place, etc.
GreenNuggs
Posts: 34
Joined: Fri 9. Apr 2004, 01:14
Location: Boston, MA. USA

Post by GreenNuggs »

DeXXus wrote:There is more than one possible WYSIWYG editor in phpWCMS. What is the setting for your "config.inc.php" line as follows:

Code: Select all

$phpwcms["wysiwyg_editor"]    = 3;        //0 = no wysiwyg editor, 1 = HTMLarea, 2 = FCKeditor, 3 = browser based, 4 = spaw
BTW, you can ~try~ one of the others, some work better than others, depending on which browser your user's will have, whether mod_rewrite rules will be in place, etc.
Thanks! This is the info I needed. I'm using whatever the default is. So I'll check it tonight. Thanks again!
Locked