smallwei
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query post to show one post per author ?I have found the simplest solution without using plugin and other custom loops. In case someone is interested, see the instruction here:
http://www.dbuggr.com/smallwei/show-latest-post-author-wordpress-front-page/Forum: Themes and Templates
In reply to: P2 Theme – Real Time Updating Not WorkingYou guys rock! Yep, it’s the PHP4 issue. I thought I read somewhere that says php4 is now supported. Maybe I’m just getting old … 😛
Thanks all!
Forum: Themes and Templates
In reply to: P2 Theme – Real Time Updating Not WorkingI have the same problem with wp 2.9 + p2 1.1.3
The post is not refreshed dynamically like it used to back in p2 1.0.5My installation was completely new.
Anyone else experience the same issue?
Forum: Plugins
In reply to: [Plugin: Author Spotlight (Widget)] Not displaying author profile dataFound the solution here:
http://www.dbuggr.com/milly/obtain-author-id-author-profile-wordpress-loop/$authordata does not work outside the loop.
p2 1.1 looks really good on wp.com
Forum: Themes and Templates
In reply to: Tags are broken after modification to P2 thememike,
what do you mean by tag not working anymore? does it not adding any tag or the input box doesn’t even show up now?Forum: Fixing WordPress
In reply to: P2 theme causing very high admin-ajax.php usageMark,
It’s possible the reason is due to WP-MU.
Sorry I don’t have WP-MU installed so can’t really tell you exactly.– smallwei
Forum: Fixing WordPress
In reply to: P2 theme causing very high admin-ajax.php usageMark, how did you find out the accessing time? Did you use firebug? How about when you try it yourself? Is it still hitting it every 30 sec?
The file shouldn’t be cached as far as I know.
– smallwei
Forum: Everything else WordPress
In reply to: Share P2 Ideas & PluginsOur site, dBuggr.com, is running on p2
It’s a technical knowledge baseForum: Fixing WordPress
In reply to: each author have his own visible profile pageI believe you need to customize your author.php file to include these information.
[signature moderated Please read the Forum Rules]
Forum: Fixing WordPress
In reply to: Removing links to WP Codex, Forums etc. on the WP control paneldogante,
two comments:
1. hide-dashboard actually has a working redirect function called: wphd_admin_redirect
you probably need to customize it to fit your need, but it works very well.2. I added the following function into hide-dashboard plugin to hide the more information link in profile page.
function wphd_hide_help_link() { echo "\n" . '<style type="text/css">#your-profile .form-table a { display: none; }</style>' . "\n"; }hope this helps.
[signature moderated Please read the Forum Rules]
Forum: Themes and Templates
In reply to: How to translate p2?Use Poedit to translate the .po files in lang folder.
[signature moderated Please read the Forum Rules]
Forum: Themes and Templates
In reply to: Modifying p2chrissaad,
You can remove commenting from the frontpage, but you need to do some hacking on p2 theme. I was able to completely remove commenting on my site. [link moderated]
I can show you how if you’re interested.
smallwei
Forum: Fixing WordPress
In reply to: P2 theme and setting up users for posting and editing commentsNot sure if I read it correctly, but I did not need to use role manager plugin to accomplish what you mentioned above. Why not just assign “author” role by default to new users? In my installation, registered users can “edit” their own post without issues.
[signature moderated Please read the Forum Rules]
Forum: Themes and Templates
In reply to: p2 theme using excessive resourcesp2 theme by default run Ajax to check for updated content every 30 seconds (i think..).
Therefore it is VERY resource intensive if you leave the page on your browser.
You can adjust the frequency of AJAX checking new content, but it kinda defeat the purpose of having “twitter” like functionality. So you need to balance it with your need.
See this post to adjust the AJAX call interval:
http://wordpress.org/support/topic/318993?replies=11Hope this helps.
[signature moderated Please read the Forum Rules]