noel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: adding titles on the front pageThe next release due out any day now will allow this.
Forum: Themes and Templates
In reply to: php errorThe newest version of P2 fixes all of these issues.
Forum: Themes and Templates
In reply to: P2 Posts of 140 Characters@gene53, I think that is what jacob00 is intending to do. P2 does *not* limit the number of characters by default.
Forum: Themes and Templates
In reply to: Problems With P2@ni-limits the theme’s ajax dynamic updating is specific to the theme, not the install. It only works if both users are allowed to see the content and if comments need to be dynamic they need to be un-moderated.
@niska: 1) that is intended 2) since most users might not remember that they turned this off, we decided to make it only stick for the one window session 3) could you provide a url where this is happening? I can not reproduce this error.
Forum: Themes and Templates
In reply to: P2 theme and domainCan you be more specific on how you are handling your subdomain and how you have wordpress configured?
Forum: Themes and Templates
In reply to: P2 Posts of 140 CharactersYou can do all of that without having to touch any core files. Just use something hooked onto an action or filter:
http://codex.wordpress.org/Plugin_API/Action_Reference
http://codex.wordpress.org/Plugin_API/Filter_ReferenceForum: Themes and Templates
In reply to: Problems With P2@lilyfan, thank you so much for the great suggestions and good finds. It’s the smallest mistakes that make the biggest difference.
Forum: Themes and Templates
In reply to: php error@ghoulsnghosts Could you send me more specific information regarding your problem? php version other plugins you’re running and perhaps any other errors that are showing up around there?
Forum: Themes and Templates
In reply to: Problems With P2The json error can be fixed be replacing line 15 in functions.php with:
if( !class_exists('Services_JSON') ) include (TEMPLATEPATH . '/inc/JSON.php');This will be fixed in the next release, due out within the day.
Forum: Themes and Templates
In reply to: Problems With P2netwolfalpha et. al: can you please post links to where you are having problems? It will help in debugging.
Forum: Plugins
In reply to: Conditional Statement for Post Formscotm: I posted bad code. This is what you want:
<?php if( current_user_can( 'publish_posts' ) ) { require_once dirname( __FILE__ ) . '/post-form.php'; } elseif( current_user_can( 'level_0' ) ) { require_once dirname( __FILE__ ) . '/banner-form.php'; } ?>Sorry for the mixup.
Forum: Plugins
In reply to: Conditional Statement for Post FormYou probably want something like this:
<?php if( current_user_can( 'publish_posts' ) ) { require_once dirname( __FILE__ ) . '/post-form.php'; } elseif( current_user_can( 'level_0' ) ) require_once dirname( __FILE__ ) . '/banner-form.php'; } ?>Forum: Themes and Templates
In reply to: php errorThanks for the notice. I’ll take a look and figure out what is going on.
Forum: Themes and Templates
In reply to: Problems With P2The theme has been released: http://wordpress.org/extend/themes/p2
We wanted to take care of a few things before a public release, and it took us longer than expected (you can blame me for that).
Enjoy, and please, let the bug reports flow 😉 (well, maybe not flow, just trickle?)
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedI’ve been using the player on my site http://degeneric.com for a while and have noticed that *some* (not all) songs seem to play incorrectly while others play fine.
Take a listen to a file that sounds fine:
http://degeneric.com/2008/11/01-young-americansmp3/And then a file that does not sound okay:
http://degeneric.com/2008/11/01-street-trashmp3/It seems to be music that hits odd frequencies that causes problems.
Both files have the same encoding, btw.