Title: Nobble's Replies | WordPress.org

---

# Nobble

  [  ](https://wordpress.org/support/users/nobble/)

 *   [Profile](https://wordpress.org/support/users/nobble/)
 *   [Topics Started](https://wordpress.org/support/users/nobble/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nobble/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nobble/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nobble/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nobble/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nobble/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 77 total)

1 [2](https://wordpress.org/support/users/nobble/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nobble/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/nobble/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/nobble/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/nobble/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/nobble/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[P2] [Theme: P2] media button – frontend](https://wordpress.org/support/topic/theme-p2-media-button-frontend/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/theme-p2-media-button-frontend/#post-2510834)
 * I see. The P2 function you tried is not going to work in isolation. Is it only
   a file upload that you want? Have you tried a dedicated plugin like [http://wordpress.org/extend/plugins/front-end-upload/](http://wordpress.org/extend/plugins/front-end-upload/)?
 * If you also want a complete post form, I’d do something with wp_editor() function
   which lets you add the tinymce editor on the front-end with upload button included.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[P2] [Theme: P2] media button – frontend](https://wordpress.org/support/topic/theme-p2-media-button-frontend/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/theme-p2-media-button-frontend/#post-2510831)
 * it would help if you could elaborate on your question, it sounds very ambiguous
   without further details and without a link to your site. I can’t make out what
   theme you are using? How is your frontend post form generated? Is it based on
   the p2 theme?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: ["link" button on quickpost box is broken](https://wordpress.org/support/topic/link-button-on-quickpost-box-is-broken/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/link-button-on-quickpost-box-is-broken/page/2/#post-1909341)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[P2] [Theme: P2] Blogpost as Default Post Type](https://wordpress.org/support/topic/theme-p2-blogpost-as-default-post-type/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/theme-p2-blogpost-as-default-post-type/#post-2369494)
 * [@mrjarbenne](https://wordpress.org/support/users/mrjarbenne/) Did you check 
   for javascript errors? It’s an odd glitch because the title field should get 
   cleared after submitting a post. Does the post text get cleared? The post text
   and post title get cleared one after the other through javascript functions after
   a post is successfully submitted. Lines can be found in p2.js inside the newPost
   function
 *     ```
       $('#posttext').val('');
       			$('#posttitle').val('');
       ```
   
 * Did you make other customizations to p2.js or post-form.php? I wouldn’t mind 
   troubleshooting if you have a live example I can look at.
 * [@john](https://wordpress.org/support/users/john/) that’s not entirely the same
   issue. Right now P2 doesn’t set the focus for the input fields very intelligently.
   If all you want is to focus the title field on page load, you can try this mini
   hack:
    find this code in p2.js
 *     ```
       if(!window.location.href.match('#'))
       		$('#posttext').focus();
       ```
   
 * and replace with
 *     ```
       if(!window.location.href.match('#'))
       		$('#posttitle').focus();
       ```
   
 * This is assuming you’ve already set the blog post to be the default format.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [change P2 default edit mode as "quote"](https://wordpress.org/support/topic/change-p2-default-edit-mode-as-quote/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/change-p2-default-edit-mode-as-quote/#post-2438426)
 * solution here still applies:
    [http://wordpress.org/support/topic/p2-post-options?replies=11#post-1746985](http://wordpress.org/support/topic/p2-post-options?replies=11#post-1746985)
 * no issues with placeholders on my end like Tevya has
 * I’m working on a P2 fork with more options and features in the new year and this
   is one of the things that would be included.
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [[wp_editor ] Distraction Free Mode Not Working Correctly](https://wordpress.org/support/topic/wp_editor-distraction-free-mode-not-working-correctly/)
 *  Thread Starter [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/wp_editor-distraction-free-mode-not-working-correctly/#post-2433071)
 * Thanks Jon!
 * It would be beautiful to have DFW working in the front end. Looking at what Ozz
   said in the ticket you linked to it might take awhile 🙁
 * > Yes, DFW is a special case as it needs specific DOM components and CSS. We 
   > may eventually get it to work everywhere but it’s not going to be very easy
   > or clean.
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [[wp_editor ] Distraction Free Mode Not Working Correctly](https://wordpress.org/support/topic/wp_editor-distraction-free-mode-not-working-correctly/)
 *  Thread Starter [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/wp_editor-distraction-free-mode-not-working-correctly/#post-2432941)
 * Alas, I tried specifying ‘dfw’ as true and also as false already (must say the
   source code comment for that setting is a big ambiguous as to what the setting
   actually accomplishes in the first place) and it doesn’t appear to make a difference.
 * The quicktag button for fullscreen mode doesn’t do anything when you click it,
   and pressing the fullscreen button in visual mode will display the textarea fullscreen
   with some buttons at the top, but not the actual toolbar (which has its own buttons)
   and no fade effects, and the textarea content isn’t centered on the screen.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[P2] P2 front page posting box hangs (but posts), then text lingers in box](https://wordpress.org/support/topic/p2-front-page-posting-box-hangs-but-posts-then-text-lingers-in-box/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/p2-front-page-posting-box-hangs-but-posts-then-text-lingers-in-box/#post-2420917)
 * p2modular [at] mail . com
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[P2] P2 front page posting box hangs (but posts), then text lingers in box](https://wordpress.org/support/topic/p2-front-page-posting-box-hangs-but-posts-then-text-lingers-in-box/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/p2-front-page-posting-box-hangs-but-posts-then-text-lingers-in-box/#post-2420914)
 * If you want, send me a link with a temporary admin account and I’ll sort it out.
   Looking like a javascript conflict.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Filter] [Plugin: WordPress Filter] Filter repeated when editing posts and other problems](https://wordpress.org/support/topic/plugin-wordpress-filter-filter-repeated-when-editing-posts-and-other-problems/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [15 years ago](https://wordpress.org/support/topic/plugin-wordpress-filter-filter-repeated-when-editing-posts-and-other-problems/#post-2131646)
 * What version of the plugin are you using and what version of WordPress?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wapple Architect Mobile Plugin for WordPress] [Plugin: Wapple Architect Mobile Plugin for WordPress] A Duplicate Content Nightmare](https://wordpress.org/support/topic/plugin-wapple-architect-mobile-plugin-for-wordpress-a-duplicate-content-nightmare/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-wapple-architect-mobile-plugin-for-wordpress-a-duplicate-content-nightmare/#post-1885134)
 * Make sure you’re using canonical urls that point to the preferred version of 
   the content – that’s your pages way of saying what version should be indexed.
   Most SEO plugins let you change this easily. In addition to that you could disallow
   indexing of pages with the ?mobile=1 parameter, however, just getting the canonical
   url specified correctly should be sufficient in most cases. It can take a while
   before Google updates….best to also sign up for a google webmaster account and
   submit your sitemap.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [broadcast to other blog over P2 Theme](https://wordpress.org/support/topic/broadcast-du-other-blog-p2-theme/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/broadcast-du-other-blog-p2-theme/#post-2038926)
 * are both blogs running the p2 theme?
 * Do you need those new posts to load inline without a page refresh on the other
   blog as the P2 theme does?
 * One solution that requires no coding is to tag the posts you want to appear elsewhere
   and grab that tag’s rss feed, then import it with something like feedwordpress(
   [http://feedwordpress.radgeek.com/](http://feedwordpress.radgeek.com/)).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [P2 1.2.3 – clicking add media opens up error page](https://wordpress.org/support/topic/p2-123-clicking-add-media-opens-up-error-page/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/p2-123-clicking-add-media-opens-up-error-page/#post-1963463)
 * Are you running this on localhost, ie. wamp environment? In which case I’d aks
   if you get the same error on a live install.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [P2 Post Form: Update Coming?](https://wordpress.org/support/topic/p2-post-form-update-coming/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/p2-post-form-update-coming/#post-1940489)
 * What you are calling post types, P2 actually defines as categories, ie. the status
   type is just a normal post with the category of ‘status’. Now we have post formats
   in WP 3.1, it would be intuitive to adopt those for p2 instead of defining the
   types as categories. Doing that however, means changing a lot of code for the
   theme devs behind p2 – but that is my best bet as what the next logical step 
   is for p2.
 * One thing that might hold them back doing major changes with p2 is the fact that
   the planned improvements to quickpress would make life easier, but that isn’t
   scheduled until at [least 3.2.](http://core.trac.wordpress.org/ticket/14966)
 * I’m with you with your suggestions, there’s quite a decent demand for further
   options and flexibility so I hope the P2 theme devs let us know what’s in their
   roadmap for p2.
 * > I’d pay for something like this for sure.
 * do you mean as a commercial theme or as customized theme that meets your personal
   requirements?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Can default category be allowed to pass through accepted_post_cats in P2 theme?](https://wordpress.org/support/topic/can-default-category-be-allowed-to-pass-through-accepted_post_cats-in-p2-theme/)
 *  [Nobble](https://wordpress.org/support/users/nobble/)
 * (@nobble)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/can-default-category-be-allowed-to-pass-through-accepted_post_cats-in-p2-theme/#post-1762981)
 * I will have a look at the latest P2. I’m assuming you’ve set your default post
   category in WP settings (write panel) to something other than ‘post’?

Viewing 15 replies - 1 through 15 (of 77 total)

1 [2](https://wordpress.org/support/users/nobble/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/nobble/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/nobble/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/nobble/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/nobble/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/nobble/replies/page/2/?output_format=md)