ubenzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 3.5.1 wp-image-editor: Scaling up images does not workI tried your solution with the Regenerate Thumbnails but I wasn’t lucky. This may be a “feautre” on programming side but it is a bug on design side where template depends on fixed dimensions.
I have the same problem, too. It would be nice not to have smiley problem.
Forum: Plugins
In reply to: How to get a category id when listing posts that belong to that categoryHello. I don’t want to learn a post’s categories. I am talking about a category filter.
I studied WP source code, and found something like this to get category id.
$cat = intval(get_query_var('cat')); if (!empty($cat) && !(strtoupper($cat) == 'ALL'))
Modified it, for self use and I am happy now. ??
Forum: Plugins
In reply to: [Plugin: DB Cache Reloaded] queries are not being cachedYeah, this should be in FAQ. I was just gonna report it, then i see this topic.
Forum: Requests and Feedback
In reply to: Implement maximum word length limit warning in Write Post areaHere is a solution. Temporary solution.
https://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/
Forum: Fixing WordPress
In reply to: Is there a post size limit?Here is a detailed blog post about the problem and fixing:
https://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/
Forum: Fixing WordPress
In reply to: Is there a post size limit?I have the same problem. ??
It is about wpautop. When I disable WordPress’ auto formatting then the content is shown again. (I use text-control plugin for it)
Forum: Plugins
In reply to: Google Account integrationI wish there was! I was looking for it, too. ??
Forum: Requests and Feedback
In reply to: Google Gears making Firefox crash with WordPressSame here. I am using Vista SP2 and FF 3.0.10.
Forum: Plugins
In reply to: [Plugin: Snazzy Archives] & breaks validationI solved it myself.
Using htmlspecialchars is OK.
change this:
$title = $post->post_title;
into this:
$title = htmlspecialchars($post->post_title);
AND
change this:
$excerpt= $this->GetExcerpt($post->post_content);
into this:
$excerpt= htmlspecialchars($this->GetExcerpt($post->post_content));
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingSorry Flowdrops. I would like to give you a link, but i deleted plug-in and installed another one instead of.
Since you say it works, and i say i doesn’t work even on default theme, it think it conflicts with another plug-in of mine.
Here is a list of my (active) plug-ins if helps:
*Akismet
*cforms
*Custom Smileys
*GeneralStats
*Get Recent Comments
*Google XML Sitemaps
*Last Year Widget
*NextGEN Gallery
*NextGEN Gallery Widget
*Sayfa Sayac (Post read counter)
*Simple Tags
*Text Control Plugin
*Theme Test Drive
*Viper’s Video Quicktags
*WassUp
*WP-SyntaxThanks for your interest, have a good night. ??
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingIt just doens’nt work! @ff 3 and WP 2.6 It even doesn’t work on default theme.
Forum: Plugins
In reply to: Theme Test Drive release – test your themes liveVery good plug-in. That is what i was looking for. I am developing my own theme for my blog but i don’t like to work on localhost or etc. of course. I code and see results instanty, but my visitors doesn’t know anything.
Thanks!
Forum: Plugins
In reply to: Your plugin totally rocks!I agree. best stat plug-in ever! ??
Forum: Plugins
In reply to: [Plugin: WP-Syntax] At the end of the code line numbers gone :)I am using FF3 on Windows Vista. It is a real interesting rendering bug in FF. ??
I am using:
font-family: "Consolas", "Lucida Console", Courier, mono;
And it is right now. Thanks. ??