Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: TinyMCE... anyone?

  1. #1
    Thread Starter
    valerio's Avatar
    Join Date
    May 2009
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    TinyMCE... anyone?

    Anyone was able to install and let the users write using this famous editor?

    I see the "Allow HTML code" option but... it's useless if there's no WYSIWYG editor, what do you think?

    Thanks
    Valerio
    ---------
    Managing MailingLists and NewsLetters with FollowUps..?
    Try http://www.YellowCurl.com

  2. #2
    Founder dcowgill's Avatar
    Join Date
    Mar 2009
    Location
    San Francisco, CA
    Posts
    1,939
    Thanks
    66
    Thanked 135 Times in 99 Posts

    Re: TinyMCE... anyone?

    You could potentially wire up a WYSIWYG editor like TinyMCE but it would take some coding. Basically your visitors would have to know some html in order to maximize this space with html.

  3. #3
    Veteran pointandstare's Avatar
    Join Date
    Apr 2009
    Location
    London, England
    Posts
    311
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Re: TinyMCE... anyone?

    Where would this be used? In the ad description field?

  4. #4
    Thread Starter
    valerio's Avatar
    Join Date
    May 2009
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Re: TinyMCE... anyone?

    Yes, in the description field!

    How many "common" people know html...?

    We need a wysiwyg editor....

    Thanks
    Valerio
    ---------
    Managing MailingLists and NewsLetters with FollowUps..?
    Try http://www.YellowCurl.com

  5. #5
    Amateur
    Not a Verified Customer
    deeve007's Avatar
    Join Date
    May 2009
    Posts
    19
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: TinyMCE... anyone?

    I second the call for some tags being available for the user, similar to what I can see above where I'm typing this, just basic formatting options.

    Would be willing to pay a premium for this as I think it's quite important.

  6. #6
    Founder dcowgill's Avatar
    Join Date
    Mar 2009
    Location
    San Francisco, CA
    Posts
    1,939
    Thanks
    66
    Thanked 135 Times in 99 Posts

    Re: TinyMCE... anyone?

    Thanks for the feedback. I will consider putting it on the product roadmap.

  7. #7
    chifen's Avatar
    Join Date
    May 2009
    Location
    Sweden
    Posts
    326
    Thanks
    18
    Thanked 13 Times in 12 Posts

    Re: TinyMCE... anyone?

    Consider to have option to admin with yes or no using WYSIWYG editor....

    here you have some in action..

    http://demo.helioscalendar.com/event...php?com=submit

    and it would be nice to have option to upload files next to upload picture, so people can upload movies or other files pdf?

  8. #8
    Thread Starter
    valerio's Avatar
    Join Date
    May 2009
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Re: TinyMCE... anyone?

    Quote Originally Posted by chifen
    Consider to have option to admin with yes or no using WYSIWYG editor....

    here you have some in action..

    http://demo.helioscalendar.com/event...php?com=submit

    and it would be nice to have option to upload files next to upload picture, so people can upload movies or other files pdf?

    Yeah, a basic editor like that would be great!

    Valerio
    ---------
    Managing MailingLists and NewsLetters with FollowUps..?
    Try http://www.YellowCurl.com

  9. #9
    Rookie
    Not a Verified Customer
    ElieP's Avatar
    Join Date
    Mar 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Re: TinyMCE... anyone?

    I second this as well.

  10. #10
    Thread Starter
    valerio's Avatar
    Join Date
    May 2009
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Re: TinyMCE... anyone?

    Hi everyone, with latest version of WPClassipress is possible. The previous one had one more js library that didn't work correctly with Tiny MCE.

    Do this:
    1) go to http://tinymce.moxiecode.com/download.php and download both Main Package and Compressor PHP
    2) unpack and upload everything on your server in a public folder, for example inside a folder called: jscripts
    3) edit post-form.php and add the following code after the first <script></script> argument the following (around line 4.
    Note: change www.yourdomain.com into your real domain name

    Code:
    <script type="text/javascript" src="http://www.yourdomain.com/jscripts/tiny_mce/tiny_mce_gzip.js"></script>
    <script type="text/javascript">
    // This is where the compressor will load all components, include all components used on the page here
    tinyMCE_GZ.init({
    	plugins : 'style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras',
    	themes : 'advanced',
    	languages : 'en',
    	disk_cache : true,
    	debug : false
    });
    </script>
    
    <script type="text/javascript">
    // Normal initialization of TinyMCE
    tinyMCE.init({
    	// General options
    	mode : "textareas",
    	theme : "advanced",
    	plugins : "style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras",
    
    	// Theme options
    theme : "simple"
    });
    </script>
    4) save and upload your file (please make a copy of your old file before doing this)
    5) that's it!

    The first line will load your JS library in compressor format, very fast!

    You can change some options editign these lines:
    themes : 'advanced',
    languages : 'en',
    disk_cache : true,
    debug : false

    But what I really wanted was this: theme : "simple"

    This option tells Tiny MCE to show just the very basic elementary tools: Bold, Italic, Underline e few others.

    Don't forget to enable HTML on WPC theme options!

    Hope you love this

    Cheers!

    Valerio
    ---------
    Managing MailingLists and NewsLetters with FollowUps..?
    Try http://www.YellowCurl.com

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Edit Listing > TinyMCE Background Color / Image
    By gomeetpete in forum ClassiPress General Discussion
    Replies: 9
    Last Post: February 21st, 2011, 05:32 AM
  2. TinyMCE Editor Font Color Default
    By epijunky in forum Help Using ClassiPress
    Replies: 6
    Last Post: May 29th, 2010, 09:59 AM
  3. TinyMCE Buttons
    By jschodde in forum ClassiPress General Discussion
    Replies: 3
    Last Post: August 5th, 2009, 09:56 AM