PaulChapman
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Author Avatars List] Show other user fieldsI would love this as well! It would be particularly cool if the plug-in could display custom user metadata (e.g., Twitter username, Facebook username, etc. captured via another plug-in) in addition to the standard user metadata that WordPress provides.
Forum: Plugins
In reply to: [Plugin: Members List Plugin] Javascript ErrorI was experiencing the same problem, and changing the $ to jQuery fixed the script error for me. Thanks!
[fwiw… running WP 2.9.2]
Forum: Plugins
In reply to: [Plugin: Members List Plugin] Long page load timeIt hasn’t seemed to help improve the page load times, and today with a new post I’m now getting this error:
Fatal error: Maximum execution time of 30 seconds exceeded in /Path_To_My_Blog/members/wp-content/plugins/members-list/tern_wp_members.php on line 606..I get this error with or without wp-supercache enabled. I can view the new post individually just fine, I just can’t view it on my home page.
Also, I’m running WP 2.9.2.
Forum: Plugins
In reply to: WP-ShortStat ReleaseIt looks to me like this stat plug-in counts hits from the admin. I added the following code in the track() function right after global $wpdb & it seemed to do the trick to exclude hits from me looking at my own site.
global $userdata;
global $user_level;
get_currentuserinfo();if($user_level == ’10’
)return; // Don’t track hits from the blog adminI’m no PHP coder, so use at your own risk & someone can correct this if its wrong.
Forum: Fixing WordPress
In reply to: yet another post about the same image problemI get the same result using the Using Thumbnail or Using Original option from the menu. Both insert a height attribute that creates a thumbnail-sized graphic.
I had used IImage Browser, but I kinda like the idea of storing image info (like descriptions) in the database.
(Note that I had to hack the IImage Browser plugin to point to the correct default folder.)
If anyone has a fix for the WP bug, let me know
Forum: Plugins
In reply to: Introducing WP-Amazon PluginHas anyone updated wp-Amazon to return links in the new Amazon AJAX popup format, i.e.
http://www.amazon.com/exec/obidos/ASIN/%the_ASIN%/%your_id%
Much appreciated!
Forum: Fixing WordPress
In reply to: yet another post about the same image problemI’m having the same problem using WordPress 2 without the WYSIWYG editor. The fix is to insert the graphic without the thumbnail, then edit the IMG tag to remove the height attribute.
It appears to be a bug to me that the No Thumbnail option still specifies a thumbnail-sized height.
I’m still looking for a fix for the bug. If anyone has a solution, let me know.
Forum: Plugins
In reply to: Copy and paste articles is not successesJust to be clear, the problem with the RTE & copy/paste isn’t MS Word’s problem. It is a problem with RTE. Try copying from any webpage into the RTE–you get tag info from the website as well.
It would be optimal if the RTE had a “Plain Paste” feature.
This thread might be of use for this problem…
Forum: Everything else WordPress
In reply to: Search problem with Forum & CodexSeems to be working now! Thanks!
Anyone have ideas?
Forum: Alpha/Beta/RC
In reply to: Why I don’t like 2.0?Just re-read the release announcement:
“and while it’s not perfect yet (for instance nested lists can cause trouble) for 95% of what you do post-to-post the WYSIWYG should save you time.”
guess it is already known!
Forum: Alpha/Beta/RC
In reply to: Why I don’t like 2.0?I’m seeing problems with the WYSIWYG editor and multiple-level ordered & unordered lists.
If I want this:
* first item
* indented item
* second itemI get this:
<ul><li>first item</li>
</ul>
<ul><li>indented item</li>
</ul>
<ul><li>second item</li>Similar problem with ordered lists.