Top Cat
Forum Replies Created
-
Forum: Plugins
In reply to: [VKontakte Cross-Post] Crossposting to own wallУже нашел.
Нужно убрать “-” в строке:
'owner_id' => '-' . $group_id,
Forum: Fixing WordPress
In reply to: Opacity and Text on Image HoverLooking for that sort of functionality myself.
Seems to be a simple thing to implement, but of course, we’re all too lazy for that…OK, no problem. Just wanted to make sure I really need two plugins and not just one.
Thanks!
Forum: Plugins
In reply to: help locate code Plugin, to "like images" or "rate photos" or "vote media&qActually, every image gets treated like a separate post when you use the built-in WP gallery.
So you should be able to use any post-rating plugin for rating images.Forum: Plugins
In reply to: [Images Meta] [Plugin: Images Meta] image description getting removedNo, it removes even a 1-word description.
Note that the input box inserted by Images Meta into post edit screen does not contain fields for entering image description, so it is probably inserting empty descriptions upon parent post update.
Forum: Plugins
In reply to: [WPML Multilingual CMS] Terrible plugin! I'll never use itAgree, this is gross.
To catch innocent people unarmed?
When they have unsuccessfully auto-upgraded forcing them through painful rollback?How more unethical this could be?
Forum: Fixing WordPress
In reply to: P2 theme causing very high admin-ajax.php usageHi guys!
I’ve been wondering for some time already why the “Add New Post” screen would POST something to the server every minute even when I’m tired of writing and gone asleep.
First I thought it was a bug with autosaving a draft when no changes to the post are made.
Now, having discovered the POST’s are generated by “Publish” block of the post-new.php page, I’m looking for a way to “fix” it. You know, sometimes it is undesirable to have hundreds of dummy requests spoiling the logs and wasting, say, mobile traffic.
Any ideas?
Thanks!
Forum: Plugins
In reply to: [Plugin: Similar Posts] Non English postsHere’s some experience with Russian:
https://www.stereo.org.ua/2007/similar-posts-and-russian-blog/Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Zip upload doesn’t work (blank page)So what really could be the problem?
I’m testing zip upload containing only 2 files, 10 kB each. Unlikely any limitations are triggered by these.
Upload fails with an empty page.
Forum: Fixing WordPress
In reply to: Custom Page ParametersLooks like nobody needs that functionality.
Here’s a finding about posts, not pages:
https://www.ads-software.com/support/topic/154294?replies=10Forum: Plugins
In reply to: How do I Pass a parameter into plugin via get requestHow come the topic is marked “Resolved”?
I’m still searching for a confirmation if
https://my.site/2008/post-name/my-new-parameter/
is the right way to pass my-new-parameter to post post-name.It seems to work in a number of combinations like
https://my.site/2008/post-name/my-new-parameter/#comments
or even
https://my.site/2008/post-name/my-new-parameter/feed/..but is it fool-proof?
Well, how about not just return’ing, but doing something like
return wp_widget_text();
Is that a correct way to substitute another widget for a hidden “Recent Posts”?
If so, how is the specific text widget selected out of all configured?I’ve added
if(is_home()) return (widget_show_ngg_slideshow($args) + wp_widget_text($args, 3));
and it seems working ??