MultiEdit Plugin

The Page.ly MultiEdit Plugin

We have been using WordPress a long time, and we always felt like it needed just a little more oomph to the editor.  This plugin is a update of an older plugin we wrote.

0.9.7 has been tested with 3.0

The MultiEdit plugin creates tinyMCE editable regions or “blocks” inside a page template. This is great for creating a template specific content block outside of the normal the_content() output. Perfect for creating two column single page layouts etc. Note: Only Works with Visual Editor

Instructions

1. Install the MultiEdit plugin to your blog/website

2. Activate the Plugin

3. Create a custom page template and declare MultiEdit regions as a comma separated list under Template Name. May be able to just add the MultiEdit line to page.php as well.. not tested. NOTE: Do not add spaces the list or region names.

Good: MultiEdit: Right,Bottom,Left
Bad: MultiEdit: Left,Right Column,Bottom (space between region name)
Bad: MultiEdit: Left, Right, Bottom (space after comma)

4. Then within your template, determine where this content will show by calling the function. multieditDisplay(‘Region’)

5. Create or Edit a Page and select the custom template. in this case CustomPage

6. Refresh the page, and you will see Tabs above the TinyMCE editor that correlate with the name of your defined regions.

7. Click a tab, add content, save the page.  When you view the page now you will see your MultiEdit content renders on the page. style with CSS as needed.

All done.

Note: The data is saved in custom_fields associated with this post/page. If you deactivate the plugin, the content is not lost as it is saved as a meta item. The plugin creates the custom fields for you based on what you declare in the template file.

Why use this plugin?

Ever need to add content to a page out side of the normal the_content() area.  Previously you either added it directly to the page template, or you created a widget region specifically for it. Both methods are impractical. Your client cannot edit hardcoded content (easily) and why create tons of widget areas if you are only going to use them on 1 or 2 pages.  This plugin allows you to create content blocks per template.  So if you define 2 MultieEdit regions, every page that uses this template will get 2 additional editable regions that you can use on every page using this template, and the content is unique to that page.

This may be helpful

Plugin is released under GPL. Feel free to tweak it or incorporate it into your theme framework as needed. Please retain our copyright notice (in the plugin file) and give credit where credit is due if you modify/incorporate it.

Who Wrote this Plugin?

Joshua Strebel the founder of Page.ly did. Okay, But what’s page.ly? : Complete WordPress Hosting with a sexy 2 minute setup.

Enjoy.

Updated WordPress 3.0

A user was kind enough to let us know about how the plugin works in 3.0

if (in_array(basename($_SERVER['PHP_SELF']),array(‘page.php’)) && $_GET['action'] == ‘edit’ ) {
add_action(‘init’,'multiedit’);
}

For some reason, the wp-admin url when editing a page does not include page.php anymore but instead post.php, maybe due to the fact that a page is now a custom post type.

By changing the above to:

if (in_array(basename($_SERVER['PHP_SELF']),array(‘post.php’)) && $_GET['action'] == ‘edit’ ) {
add_action(‘init’,'multiedit’);
}

the tabs are now showing up!

Comments
  1. “Please retain our copyright notice and give credit where credit is due.”
    Actually I hate this stuff. Did WordPress ever said you something like this? People are making money out of WordPress and they are imposing things like this. These limitations are crap.

    • Really? So the plugin is free to use and hack as you need, and asking for a simple retention of our credit is too much? Sometimes you can’t please anyone.

    • Wow! Can’t believe you said that! Really?? I think I’ll actually add the credit right on my main splash page – thank you guys for creating this little gem =) Stay awesome and ignore the ignorant!

  2. Pingback: MultiEdit region wordpress plugin « saint-rebel

  3. This is going to be so sweet! I am one who is pleased.

    Will it be added to the Page.ly admin area at some point by any chance? Or is it a plugin that is only integrable in themes?

    I assume only the latter as of now. I will be adding it to my themes from now on for sure though.

    • The plugin rely’s on the MultiEdit: region being defined on a theme custom template.. so it really is theme dependent and can be used with any theme. May not add it to page.ly installs only because it’s usage is slightly advanced.

  4. Pingback: WordPress Plugin Releases for 02/15 « Weblog Tools Collection

  5. As I read it, the makers are asking for a credit in themes and in plug-ins,rather than on the sites where it is used. Can’t see an objection to that. Sounds like something very useful for us.

  6. I’d be *proud* to give you credit for this handy work. I typically provide links to all the plugins I use.

    This is desperately needed at the core level for WP.

    Thanks for your hard work,
    ~k~

  7. We’ve just started using this in one of our latest client builds, it’s phenomally easy to use!

    The way it integrates so naturally with the WordPress WYSIWYG should make it really easy for Clients to use – thanks fellas!

  8. Awesome work. I can definitely see this coming in handy for client work.

    @Saad Bassi

    Maybe you should take a moment to read the license.txt file that’s distributed with every copy of WordPress before saying things like that.

  9. Pingback: fritz freiheit.com blog » Link dump

  10. ?

    This may be me being a little to needy:
    Is there anyway so that it just shows the tabs associated with the defined areas and not the “main content” tab?

    If I have two columns, I only want to see “Left” and “Right” as tab choices.

    Thanks,
    ~k~

    • Hey Kyle..
      So Just created 1 multiedit region and call it Right..

      So you would see “Main Content” and “Right”.. the_content() would act as your left col.

      Maybe someday I make it so you can rename “Main Content” tab

  11. Pingback: WordPress as CMS: 4 content block plugins with WYSIWYG editors | WP Garage

  12. Pingback: MultiEdit: Editar paginas en Wordpress dinamicamente | Eliseos.net

  13. Hi

    Nice plugin, but I’m having trouble getting it to actually save content that I enter in the new tabs. I have a new custom template, the tabs show, but when I add new content it reverts back to the main content tab and won’t save. Thoughts?

    Using WPMU 2.9.1.1

    Thx

  14. To say that this plugin is amazing, it’s reductive :)
    I will try it asap but want share a thought…
    If I use a defined structure to organize content layout it means that I think to put, in regions, more or less always the same kind of content.
    So, what about to allow a further step: define also which kind of content could be contained by a block.
    May be defined text, may be widgets, may be a function that retrieve content from db and shows result…
    Joining this to a form plugin that create/populate db tables, become a killer application: custom insert and custom output, all easy to manage. You can create infinite applications only with this.

    A great work ;)

  15. Pingback: WordPress Plugin Releases for 02/15 | Son Of Byte - Web Design & Development

  16. I am using this plugin for a clients site. It’s a pretty good plugin. As someone stated before, a nice feature would be to control the stab structure. Other than that, the plugin is very cool. Thanks for this!

  17. I’ve seen cases where the main content disappears if the “HTML” view is selected for one of the multi edit areas. (using WPMU) Have you seen this? Thanks.

    • 1 do you have the latest version?
      .. so the actual content for the main region disappears when you click html on a sub region. I’ll look into that.

  18. This is a fantastic little plugin!

    Thanks for working on this.

    One possible extention:

    Right now to edit a page I can insert code — <?php edit_post_link('Edit this element.', '’, ”); ?>

    I would love to be able to do this for the MultiEdit and for a click to direct the user to the correct TinyMCE tab (right now obviously they all just bring up the main content tab).

    It would probably require a new function call and therefore be pretty complex, but if you have the time, it would sure be neat!

  19. Do you think you might add an option to return the output of multieditDisplay($index, $display = true) rather than always echoing it? I can easily add that to my copy of the plugin, but it would be a nice feature to have baked in.

    Thanks for this contribution!

  20. As of 3-10-2010, with WordPress 2.9.2 and version .9.4 of the plugin, I get a few odd things printing out below the article “Edit” pages.

    One is a rouge “print_r” debug around line 87 in multiedit.php (print_r($matches);).

    The other is that array_slice blows up on line 112 of multiedit.php if the page being edited does not have a custom template. I fixed it by adding an if statement around it like so:

    if (file_exists($templatefile)) { // my if statement
    $template_data = implode(”, array_slice(file($templatefile), 0, 10));
    }

    Everything else seems to work good – thanks!

    • Thanks @thaddeusmt I’ll clean that up tomorrow and do another point release.

  21. This plugin is a godsend for CMS’s. I’m implementing it into a theme tonight and notice that when I rename a region, WP keeps looking for the old one and gives me an error message. Is there somewhere in phpmyadmin where I can remove the reference to it?
    I’m with the other poster, being able to rename “main content” would be a great addition.

  22. What’s the reason for not being able to use the html editor for the editable regions? Is it because it is stored as metadata? Is there a way around this? I ask because I’m trying to implement a few jquery plugins in these sections (e.g. accordian, sortable tables). If I can help write this…I’d love to. I just don’t want to read all of your code and figure out how it works if I don’t have to… :)

  23. Ok….I really should have tried this before just taking what you say in a note at the top of this page for granted…

    “Note: Only Works with Visual Editor”

    This is, in point of fact, not true. I was able to add html markup in the html mode, and then switch back to the regular mode and see all of the content with the changes updated.
    The only thing odd is that it wraps the entire section in a tag anyway.

    Other than that…works great. This is an incredible plugin. Thanks again for great work.

  24. “Puis au sein de votre modèle,” ca veut dire quoi?

    4. Puis au sein de votre modèle, de déterminer où ce contenu sera montrent en appelant la fonction. multieditDisplay ( «région»)

  25. Pingback: WordPress Plugin Releases for 02/15

  26. Pingback: Things I Found Interesting Around March 16th | Chris Coyier

  27. A BIG thanks also from me to the multi-edit plugin – until now it has saved me about a half an hour of work each day !! I can’t wait to show it to my clients, in that context I have 2 questions:

    1) Could it be possible to use [shortcodes] within the tabs?!

    2) I always get a text snippet like the following displayed in the bottom of my post-edit screen, can I remove it somehow?

    Array ( [0] => multiedit_Pic1 [1] => Pic1 ) Array ( [0] => multiedit_Pic2 [1] => Pic2 ) Array ( [0] => multiedit_Pic3 [1] => Pic3 ) Array ( [0] => multiedit_Pic4 [1] => Pic4 ) Array ( [0] => multiedit_Pic5 [1] => Pic5 ) Array ( [0] => multiedit_Pic6 [1] => Pic6 ) Array ( [0] => multiedit_Pic7 [1] => Pic7 ) Array ( [0] => multiedit_Pic8 [1] => Pic8 ) Array ( [0] => multiedit_Pic9 [1] => Pic9 )

    Thanks again!
    Thomas Feder

  28. Pingback: More Plugins « Sidewalk Cafe Design

  29. Great Plugin! I think the tabbed interface works well.

    It is a little buggy though when saving directly from html view. If you switch back to visual after making changes and then save, it works fine. Using WPMU 2.9.2.

    Thanks for a great contribution.

  30. On the WordPress side, this plugin works exactly the way you think it ought to. I feel like I’ve been looking for something like this ever since I started using WP.

    My one complaint is that I’m ending up with lots of junk in my code like mce_href=”whatever” and mce_bogus=”1″ and so on. I don’t know if that’s something you can fix or if it’s a problem with tinyMCE, but it’s super annoying.

  31. I agree with Jordan, Great plugin, however there does seem to be a bug – when you save a page in the HTML view of one of the regions this content gets duplicated in the Main Content area, thus erasing what you have put in the main content area. It does work if you save the page in visual mode, but its impracticable to ask people to always switch back to Visual mode before saving. Would be great to have a fix, really appreciate your plugin.

  32. This is a pretty cool plugin but I can’t seem to get it to work properly on my custom theme. I’ve added everything properly and it’s showing up fine. However, when I go to the WP backend and put content in the different tabs it always seems to put the content in the “Main” tab instead of my created tab. Any help would be much appreciated.

  33. Very interesting plugin, I’ve been using Magic Fields since being introduced to it — I’m interested to see the flexibility this plugin has, but Magic Fields opens up a world of opportunities — worth checking out http://www.magicfields.org

    Thanks for innovating — I’m looking forward to trying this out.

  34. I’m with Jordan up above… GREAT plugin, but the bug that happens while saving while in HTML isn’t so great. Any ideas when this might be fixed? I’m using this plugin on a few sites for other people, and am pretty nervous that they are going to end up deleting their content because of the bug. Maybe there would be a way to disable the “update” button while html tab is active?

    • Gotcha,
      We are in a big datacenter move right now. Early next week I can look at it.

  35. When applied to the Default Template, I’m getting an error on line 112 since the file name is empty.

    I’m new to PHP and WordPress but am giving it my best shot.

    There also doesn’t seem to be a way in WordPress to set your Default Template. It’s automatically set to page.php. Is that correct?

  36. I’m still having the bug Joshua :( If I edit in html within one of the new tabs I created and then save, it still overwrites the main content tab.

  37. @Rhianon be sure to clear your browser cache
    the bug fix was made to the javascript file and you could have the old one cached.

  38. Hi Joshua, first of all: GREAT PLUGIN! I really would like to use this one on my sites. But there’s one big problem: I don’t know where to put multieditDisplay(‘Region’) in my template :( I am using the WooThemes templates. Maybe you can help me with this?

    Sorry for this but I am no web developer :/

    Cheers
    Sascha

    • @sascha Hey there, it’s fairly simple once you understand how wordpress themes work. Unfortunately the details are more than can be covered here. Suggested reading

  39. Just trying to get this plugin to work for WordPress 3.0 beta and it doesn’t seem to be. It is an essential plugin to what I’m doing so I was just wondering if there’s a quick fix or if I have to wait a little while for a compatible version to be released?

    Luke

  40. I am completely new to blogging. I uploaded the program and would love to use it, but I really don’t have an idea how to go about that. First, where do I find the custom page template? I clicked on your wp link, but I still don’t understand.
    Thanks, Sally

  41. Great plugin – it opens up a world of possibilities.

    Question for the developers: I’ve created a page template with 3 content blocks total (that is the usual one, plus two multieditDisplay blocks). Everything works and I get 3 tabs when I edit the page.

    I’ve had a situation where the client decided to revert back to 2 content blocks total. I’ve changed the template, but we still get the third tab showing up. It is disabled, and we get an informational messgae telling us that this third block is not included in the template. It makes perfect sense why this is occuring, but its confusing the client.

    How would I resolve this so the third tab no longer shows up (even though its disabled)?

    • Go down to the custom fields, and click the “show/hide multiedit fields” link.. then just delete the custom field ;) I did that so you would not lose anything in that 3rd field even though you “disabled it”

  42. The plugin seems to be having issues with WordPress 3.2. Anything I put in the editor disappears as soon as I save. I have to put all changes down in the custom fields section, which is not going to work for my clients. Any chance this will be updated soon?

    • When defining the MultiEdit region in your page template, the name must not have any spaces. Example: MultiEdit: Footer Region – this won’t work MultiEdit: Footer_Region – this will work. Hope this helps, I was running into the same problem.

      @JoshuaStrebel – Thanks for this great plugin. I intend to use it on many wordpress projects.

  43. Hey Josh, Great plugin, I wanted to know how I would get it to work on a custom post type by default. I’ve edited the plugin file to add my default page array('page.php',‘post.php’,'single-custom.php') but it still doesn’t seem to be working. Is there another solution for this?

  44. Any clue whether there’s a way to make this work with the Carrington-blog theme? Using WordPress 3.2.1 and Carrington-blog 2.3.1 with a child theme. I’ve tried sticking multieditDisplay(‘ ‘); statements various places, but don’t see anything on the page Edit Page. Sure would be awesome to have this functionality… Thanks for any insight.

  45. Pingback: Hot Yoga Revealed, Part 2: The Technical Bits – Design By Sweet – Quality web design and development from Essex, UK.

  46. @jenny when you enter content and it disappears I had same problem, until I revisted the formating of custom template declaration up top. I had spaces after region names at first. I took them away and all good!

    @joshua This incredidible plugin has worked for me 100′s times so thanks for my best ever plugin. It’s not working on page templates where I have custom query.

    Any advice. Please. I’ll donate more, just help.
    Thanks!

  47. Hi Josh. This is a great plug-in and it is really easy to use!

    However I have one big issue. I’m using the wordpress (3.2) and the twenty Ten theme. I’ve created a tow-column template and therefor one extra block (right_column). Everything works I put in there works fine but when I try to put shortcode from other plug-ins (eg. FS Contact Form) into it it doesn’t work in the right column.

    Please, can you give me some advice?
    Thank you!

  48. Currently working on a new wordpress website and this is exactly what i need. I have been looking for a plugin that allows me to create two columns on a page for a while. Really helpful thankyou.

  49. The plugin works well…great UI–that’s extremely important.
    But how can I get shortcodes, and text filtering (wptexturize, wp-typography) to work with the content?

  50. Using WordPress 3.2.1, how do you get this to work with custom post types?

    If this can be done with this plugin, that would truly make WordPress a completely customizable CMS that is easy for clients to update and manage.

  51. There are still some big issues with content completely disappearing and tabs loading incorrectly. If the client makes an edit while it is bugging out, that tab content can be completely deleted (!!!)

    1. Sometimes the first tab will show content and sometimes it will be empty. Switch tabs, refresh the page a few times. I’ve repeated this happening 3 or 4 times. It looks like sometimes it will load tab2 into the first tab?
    2. Switch to HTML view and then reload the page. Then go back to Visual View. Tabs are empty and the content of some tabs are loaded into the wrong tabs.

    I am on WordPress 3.2.1 and using MultiEdit Version 0.9.8.1 on the latest Firefox.

  52. My only complaint with this plugin is that your SEO is not good enough – I’ve been looking for a plugin like this for EVER. This totally rocks, and should be part of the WP core, and makes my life a thousand time easier in a thousand ways.

  53. Hi there…was wondering if I could get some help. I have installed Plugin: Page.ly MultiEdit as well as AnythingSlider.

    The two aren’t playing nice with each other because of the short codes. AnythingSlider requires a short code in order to function [anything_slides].

    If I put in this short code into my page (any one of the MultiEdit tabs) it loads the slider but automatically disables the multiEdit from rendering.

    Note: I have checked Yes to the MultiEdit Short Code Support: and I have used the php echo do_shortcode in the themes custom_home page as well, which also disables the MultiEdit from rendering.

    Here is the site so you can see what I am trying to do: http://66.147.244.61/~lifechu5/
    I need the slider on top then was wanting to use mutliedit for the three tabs below it.

    Thanks so much for the help!

  54. A follow up to a previous post….Interesting…AnythingSlider will only work with MultiEdit if the AnythingSlider short code is called in the LAST content block of the page. It disables any MultiEdit Content blocks that are after it.

    any thoughts on how to fix it?

  55. Wonderful plugin you have here. I just implemented it with a client and its working well.

    Would love to see a version for Custom Post Types, but in its current state, I am not sure how that would work. (Custom Post Types dont have template options, which this plugin requires for pages).

    In any event, if there is anyone forking the code to try and do this, I’d love to see it.

  56. Hello Joshua,

    Seems like a fantastic plug-in with all the features I’ll need for our new site. Unfortunately, the tabs are not showing up in my custom template(s) – even after following the detailed instructions. I saw the fix for 3.0 listed above but am unsure where the code should be inserted. Any advice?

    Best,

    Adam

  57. Hi Joshua,

    Thank you for this plugin – I’ve used once before and found it really useful! I have a question about an upcoming project… Do you know if multi edit multi-edit compatible with Magic Members subscription plugin??
    Best regards,

    Denise

  58. Is there any way to get this plugin working with revisions? Right now when restoring old post/page revisions, the content doesn’t change in any multiedit areas.

  59. I have this plugin running for a client and had been working fine but now it hasn’t been for the last few months. when i click on the page that has the multi edit regions, no tabs show up and i can’t even click on anything on the page. nothing responds. I tried that wordpress 3.0 fix up top but that doesn’t do anything either

  60. There seems to be an issue when putting an iframe (a Google Map embed, in my case) into one of the content blocks. It’s yanking out a lot of the markup, but it doesn’t do this on a normal WP page.

  61. Using cforms II and page.ly multiedit with short code support setting enabled (yes), however any time the cforms shortcode is added to the multiedit region it only renders html as below and not the actual forms:

    Default Form

    the shortcode is in HTML view

    If I place that shortcode in the main content area the form is rendered as expected.

    Page.ly MultiEdit version: 0.9.8.1
    CFORMS II version: 12.2
    WordPress: 3.2.1

  62. This is soooooo money! Thanks for taking the the effort out of this one! BTW the guy who doesn’t want to pay credit where its due is a clown!

  63. Hi! I love the plugin, but I have one question for you – I’m able to add links to the bottom block and main content block, but not my right block. Any thoughts on how to get this to work?

  64. I would like to build a “content aware” template using MultiEdit and some sort of conditional comment. So a page can be one or two colums, let’s say #main and #contextual. The #contextual well is a MultiEdit region. So I want to do a condition to see if the region is populated with content, before wrapping it in a and using CSS to work out the column logic. I could of course use two templates (one column and two column, but then I wouldn’t really need MultiEdit either. I looked in the plugin file itself, and it is not clear to me if I can in fact query the region in advance of drawing it to the screen in my template. Any help would be greatly appreciated.

    • Changelog: added a second param to multieditDisplay function for return, if true will return the value instead of echo. example: Assign content to $foo, < ?php $foo = multieditDisplay('Right',true)?> then at some other time echo $foo < ? echo $foo ?>

  65. The plugin is not fully compatible with WordPress 3.3. On the WordPress admin page edit, the last lines of text entered in the editor are showing up next to the tabs (defined regions) of the plugin.
    Any idea when an new update of the plugin will be released ?

    • I got the same problem only I’m using WP 3.2.1 and pugin version 0.9.8.3.
      - Beside the tabs there is text showing up
      - Only the Main Content tab text show up correctly on the page. The data in the tab doesn’t show the ‘enters’in the text as well as the different text sizes (H1-H6)

      Somebody already got a solution for this?

      Thanks

    • Got the same problem as Eddy here only with WP version 3.2.1 and plugin version 0.9.8.3

      Also some of the html tags are not loaded correctly (enter and text size (H1-H6) is not working for me). It Only works in the “main content” tab.

    • Indeed, i’m using Version 0.9.8.3 of the plugin, on WordPress 3.3.1 and getting the same issue.

      @Joshua Any idea when this will be fixed?

  66. I am having the same issue where content disappears from the tabbed content areas. This occurs on clicking to another tab or saving.
    Any solution for this? Just installed the plugin so I’m sure I have the latest version.

  67. Thanks a ton for this! Just what I’ve been looking for, and something WP should build into the core, IMO.

    I’m running into a conflict. I’m embedding a page *within* a page (http://css-tricks.com/snippets/wordpress/embed-a-page-inside-a-page), but unfortunately it prevents the MultiEdit content from showing up. It’s there in the admin area, just not appearing on the webpage itself. When I remove the page embed code MultiEdit works just fine.

    I tried pasting the code in here but it was blocked. Any suggestions?

    Thanks again!

  68. Hi,

    Quick question.
    1. Is it possible to edit the tab name in the admin (without going in php).
    2. Is it possible to create another tab in the admin (without going in php).
    3. Is it possible to rearrange the tabs in the admin (without going in php).

    If not could you direct me how?

    Thanks in advance.

  69. Hi, firstly kudo’s for such a sweet plugin although I am having a problem adding a unique form per page, when editing in visual mode it disables the form leaving the javascript code showing on the page do you have any suggestions?

    Thank you for your time

    Phill

  70. The tabs don’t look right in my browsers. Solution below.

    #multiEditControl {
    border-bottom: 1px solid #21759B;
    line-height: 2em;
    height: 2em;
    margin: 3em 0 1em 0;
    display: block;
    }
    #multiEditControl span.multieditbutton {
    display:inline-block;
    margin:-1px 5px 0 5px;
    background:#f1f1f1;
    border:1px solid #ccc;
    border-bottom: 0px;
    padding: 0 10px;
    cursor: pointer;
    color: #21759B;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    -moz-border-radius-topleft:6px;
    -moz-border-radius-topright: 6px;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    }

    #multiEditControl span.multieditbutton.selected {
    background:#fff;
    border-color: #21759B;
    padding-bottom: 1px;
    }

  71. Was able to make it work for custom post types when using single-{posttype}.php files:

    Add to line 191:
    if( $post->page_template == ” ){
    if( file_exists( TEMPLATEPATH . “/single-” . $post->post_type . “.php”) ) {
    $post->page_template = “single-” . $post->post_type . “.php”;
    }
    }

    Looks like:

    function doMultiMeta() {

    global $post;
    $meta = has_meta($post->ID);

    if( $post->page_template == ” ){
    if( file_exists( TEMPLATEPATH . “/single-” . $post->post_type . “.php”) ) {
    $post->page_template = “single-” . $post->post_type . “.php”;
    }
    }

    // if default template.. assign var to page.php
    $post->page_template == ‘default’ ? $post->page_template = ‘page.php’ : ”;

  72. There seems to be a bug with version 0.9.8.3 in wordpress 3.3.1
    If a page editor wraps any text in a span to modify font size, color, etc. All the spans are rendered at the top of the page next to the last tab

  73. @Mark, Eddy, Nick:
    Besides including the buttons, the content from the multiEditFreezer is included as well.
    While Joshua is busy taking pics from his newborn son ;-) let’s change line 33.
    from: jQuery(‘#multiEditControl’).append(jQuery(‘#multiEditHidden span’));
    to: jQuery(‘#multiEditControl’).append(jQuery(‘#multiEditHidden span.multieditbutton’));

    • @Jan It has been a while since I came back to this but that worked!
      Any chance for it to be part of an actual release for the plugin?

  74. Hey, love the plugin so far… I was just wondering, can someone provide the appropriate php code to call the Main Content section from within my custom template?

    Ideally, I’d like to define where that content will show up (within the template and css calls), and while I could simply add another custom tab, this instance is all about making the most sense to a client.

    Thanks for your help!

  75. Hey! Thanks for this great Plugin! :)

    I would have one question: How can i delete one of the new content tabs?
    If i delete the new field named “FAQ” in my theme (at both positions), wordpress tells me this in the backend “FAQ region(s) are not declared in the template.”

    Thank you for feedback!
    Maggy :)

  76. Thank you for writing this plugin. I’m having a problem with the plugin in FireFox (not on Safari) if I select any tab, except for the main content tab, and then reload the page. After reload, the “Main Content” tab now has class=”selected”, as expected, but the editor content doesn’t change. TinyMCE still shows the content from the previous tab. So lets say I select a tab called “Right Column”, & then reload, the selected tab becomes “Main Content”, but the editor show “Right Column” contents, & the “multiEditFreezer” also contains text from “Right Column”. Is this a problem other people have had? Does this have something to do with the iframe contents not refreshing on page reload? I’m using Wp 3.3.1.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>