The wysiwyg tag has no wiki summary.
0
votes
1answer
125 views
wysiwyg is scrambled
I have a problem with the wordpress editor.
It keeps removing my enters and scrambling the content.
How can I solve this problem?
1
vote
2answers
190 views
How to integrate CLEditor to comment system?
I would like to improve the comment editing for user by adding a simple WYSIWYG editor, and I selected CLEditor as possible good candidate because it is light, customizable and jQuery based.
I ...
1
vote
3answers
585 views
Create anchor from Wysiwyg editor
Is there any way to create internal anchors without using the HTML rendering option?
I don't mind but I guess my customer will ;)
Thanks!
1
vote
1answer
43 views
content gets scrambled
Every time someone edits our blog the content is displaying all wrong.
It looks perfect in the wysiwyg editor but when you publish the page the content is completely wrong (pictures displayed next to ...
1
vote
1answer
636 views
Adding TinyMCE buttons without removing plugin buttons?
I'm developing a plugin that I'll install for all my clients to make WordPress slightly easier to use for them. One of the things it will change is the default TinyMCE configuration. It'll add things ...
1
vote
1answer
175 views
Is there a filter for editor-style.css file?
I need to add multiple css files from a css framework to my editor-style.css file. The point is that i don't want to update the editor-style.css file anytime there's a new update from either my theme ...
3
votes
1answer
227 views
Highlight Syntax Inline
I'm looking for a plugin that is compatible up to the current version of WordPress (3.1.1 as of writing of this question) and that supports some kind of inline highlighting of programming language ...
0
votes
1answer
146 views
Can Rich Text features be configured per user?
There are obviously different types of users (from power-users to casual authors).
WordPress's Rich Text editor is based on TinyMCE - which has a lot of features. Most of these features are ...
3
votes
1answer
256 views
Pasting images removes class attribute
When you paste an image with a class attribute in the Wysiwyg editor, the pasted image no longer has this class attribute.
This makes it harder to copy and paste images that are aligned with the ...
1
vote
2answers
2k views
How do I add a listbox to the TinyMCE editor?
I am having trouble adding a list box to the TinyMCE editor in Wordpress. I have already read entirely through this question but it did not get me all the way there: How i can i add a split button or ...
1
vote
1answer
841 views
When adding buttons to the tinyMCE editor, how do I make them wrap to the next line and/or display in the “Kitchen Sink” area?
I'm successfully adding buttons to the TinyMCE editor in Wordpress, but the problem is they all show up to the right of the Kitchen Sink button and I have so many that I need them to display on a new ...
1
vote
3answers
493 views
How to allow <video> html5 tag in Wordpress
Currently I am running a Wordpress MU blog using the Unfiltered MU plugin. However, when I try to insert an HTML5 tag, it gets stripped away. I believe it may be the WYSIWYG editor cleaning the ...
1
vote
1answer
1k views
two tinyMCE editors in the same page
I've used this method to enter the first editor:
on functions.php:
function add_admin_theme_styles() {
wp_enqueue_style('thickbox');
}
add_action('admin_print_styles', ...
2
votes
2answers
2k views
What are the better WYSIWYG post editor replacement alternatives?
I hate the built-in WYSWIG editor for WordPress. (EDIT: Editors of the sites I support hate it, which in turn makes more work for me. Hence, I hate it.) I know there are some alternatives out there, ...
1
vote
1answer
135 views
Is Using WordPress Supplied WYSIWYG Advisable?
I have been considering using the the_editor function to create WYSIWYG editors in my own pages. Is using the WordPress's inbuilt WYSIWYG editor in a plugin meant for general distribution advisable? ...
13
votes
9answers
7k views
Stop Wordpress Wrapping Images In A “P” Tag
I have searched high and low for a simple solution to this, but to no avail. Wordpress keeps on wrapping my images in p tags and because of the eccentric nature of the layout for a site I am working ...
2
votes
4answers
3k views
Remove_filter ('the_content', 'wpautop') is not working
I've tried disabling WP's auto-paragraph thingy using
remove_filter ('the_content', 'wpautop');
but I am still getting my stuff wrapped in automatic <p> tags... What am I doing wrong?
Its at ...
2
votes
2answers
2k views
How to Add WYSIWYG Editor (tinyMCE) to plugin options page compatible with Wordpress 3.0 and up?
I'm trying to add tinyMCE instead of textarea for one of my options in my plugin with no luck so far. I tried this :
http://www.dbuggr.com/smallwei/add-wysiwyg-editor-tinymce-wordpress-plugin/
and ...
2
votes
3answers
431 views
How to remove commenters ability to add hyperlinks to comments?
I'd like to be able to filter out a commenters ability to add hyperlinks in their comment text.
I removed the "websites" field from the mix to reduce the amount of spammage already (see: Removing ...
1
vote
1answer
247 views
Inserting code to HTML view from a pop up initiated from visual view
I am trying to insert html into the HTML view.What i have done is to have tinymce advanced(a wordpress plugin) button that throws a popup and in it is all the necessary things to insert the html.The ...
0
votes
2answers
1k views
Theme Advanced Styles in Visual Editor and Paragraphs
After i add these codes to functions.php:
add_editor_style();
function childtheme_mce_btns2($orig) {
return array('formatselect','styleselect', 'underline', 'justifyfull', 'forecolor', '|', ...
5
votes
3answers
3k views
Make WordPress WYSIWYG not strip out iframe's
I have a blog that I often need to insert iframes into posts for various reasons (don't ask why just trust me!)
When I use the "visual" view to edit my posts the WYSIWYG constatantly strips out my ...
1
vote
3answers
1k views
How can I filter Microsoft Word gunk from pasted content?
I have some users who are posting to a group blog and are able to cut-and-paste but their pastes include things like:
<!– /* Font Definitions */ @font-face {font-family:”Cambria Math”; panose-1:2 ...
12
votes
5answers
4k views
Is there a way to get N number of WYSIWYG editors in a custom post type?
Is there way to have multiple WYSIWYG editors for a custom post type? For example, if I had a 2 column layout I wanted to have one editor for one column and another editor for the other.