equ13
Forum Replies Created
-
Forum: Themes and Templates
In reply to: 4 column templatesThe problem is solved. Just found a 4-column template and walked through its code.
Forum: Fixing WordPress
In reply to: Redirect user after postingSo, are there any ways of hacking the code in order to redirect my authors after posting to the main page?
Forum: Fixing WordPress
In reply to: Redirect user after postingI know about TDO mini forms but it’s not going to work in my case. I need this even if I’ll have to hack a code a little bit…
Forum: Themes and Templates
In reply to: Media buttons area in TinyMCE editorThanx! I’ll be trying next couple of days!
Forum: Themes and Templates
In reply to: Media buttons area in TinyMCE editorIs it possible to hide html editor from authors and show it to admins? I can hide the html option by commenting those lines out, as you suggested, but my admins also wan’t see it ??
Forum: Themes and Templates
In reply to: Media buttons area in TinyMCE editor//Disallow HTML editing function strip_htmleditor($origvalue) { return !(current_user_can('edit_published_posts')); } add_filter('user_can_richedit', 'strip_htmleditor');
This code hides from my authors visual editor instead of hiding html editor.
Forum: Themes and Templates
In reply to: Media buttons area in TinyMCE editorSteegness, I greatly appreciate your help! “Remove media upload area” code works perfectly for me, thanx! But there is a little problem with disallowing html editor. The code you’ve provided above hides from my authors visual editor instead of hiding html editor. Could you please help with a “plugable solution” for this one too? Thanks alot!
Forum: Fixing WordPress
In reply to: How to preserve MS Word formatting in WordPressIt doesn’t work. When I try to use button “Paste from Word” it has the same effect as I paste the text right in the form (all my word formatting is lost). What I want to do is that my blog authors could write a post by copying and pasting text from MS Word. We get material in Word files, so we have to preserve it’s formatting. Converting it to html takes too much time.