Rank: Member
Joined: 8/8/2007(UTC) Posts: 298
|
I'm creating some custom pages for some basic information for our customers. But i'm having trouble with the changes that i make using the "Free Text Box Editor" not taking? Changing the font size doesn't seem to make any difference. Is it calling up anything in the CSS that could be causing this? Also i noticed that the only way to change font color is the hand code it, No drop down available?
Is there another Text Box Editor that is better (yet still free), or would it be better to just do all the HTML outside of the site and just copy and paste it into the Free Text Box Editor?
Thanks |
Dan |
|
|
|
Rank: Member
Joined: 3/24/2005(UTC) Posts: 311
|
Hello Dan, We have successfully implemented FCKEditor into our store and it is a HUGE improvement compared to the free Text editor. Attached is a zip of our files. Just follow the install.txt. Once installed just simply goto your Admin/Options/display and there should be a FCKEditor option to choose from. Good luck!! File Attachment(s): FCKEditor.zip (1,337kb) downloaded 207 time(s).You cannot view/download attachments. Try to login or register. |
|
|
|
|
Rank: Member
Joined: 4/8/2008(UTC) Posts: 21
|
Hi I have succesfully installed FCK Editor from the download in the previous post, however, it doesn't seem to be able to either display, insert, or upload images... Do these features currently exist in FCK Editor? If so, have they not yet been integrated into BVCommerce?
|
|
|
|
Rank: Member
Joined: 3/24/2005(UTC) Posts: 311
|
I believe FCK Editor does support it but, you'll have to look at documentation and modify the correct configuration files to make it happen. My intent was to get a less buggy WYSIWYG editor up for my product managers to use. |
|
|
|
|
Rank: Member
Joined: 4/8/2008(UTC) Posts: 21
|
Here'a quick hack to make image editing work in FCKEditor:
1. In fckconfig.js,
add the image button to FCKEditor:
124 ['Link','Unlink','Anchor','Image'],
Then, change some params for calling the BV Image Browser:
289 //FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=../../connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ; 290 FCKConfig.ImageBrowserWindowWidth = 640; 291 FCKConfig.ImageBrowserWindowHeight = 480 ;
2. In BVModules/Editors/FCKEditor/editor.ascx.vb, set a url for calling the BV Image Browser
75 Me.FCKeditor1.ImageBrowserURL = VirtualPathUtility.ToAbsolute("~\BVadmin\ImageBrowser.aspx") + "?caller=FCKEditor&WebMode=1&Returnscript=SetUrl"
3. Now make a few edits to ImageBrowser.aspx to make absolute paths
49 If Request("caller") = "FCKEditor" Then 50 shortName = "/" + shortName 51 End If
and to call those close button after setting the URL
66 If Request("caller") = "FCKEditor" Then 66 Me.lnkChoose.HRef += " window.close();" 66 End If
and it works... At least on my website...
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.