Jan Zikmund
Forum Replies Created
-
Forum: Plugins
In reply to: [MailChimp Widget] [feature request] Add filter for success messageany news regarding this?
Forum: Hacks
In reply to: WP 3.5 – set title for image when inserting mediaYou can also revert it back by inserting this filter into functions.php in your theme
// return back title tag for images removed in WP 3.5 add_filter( 'wp_get_attachment_image_attributes', 'myReturnFeaturedImagesTitles', 10, 2 ); function myReturnFeaturedImagesTitles($attr, $attachment) { if (!isset($attr['title']) && isset($attachment->post_title) && $attachment->post_title !='') { $attr['title'] = $attachment->post_title; } return $attr; }Hello, thanks a lot, it’s great that you can respond so fast.
The new plugin version is working great, it’s exactly what I wanted. I just rated it by five stars and I am sure I will use it again.Thanks and have a nice day
Z.You’re welcome, thanks also for a quick fix and good communication 😉
Thanks for fast reply. Please just write here when it is fixed so I can mark this [resolved] and update it on my site.
I had also problems with switching the currency – setting currency_code to EUR never made the change to EURO.
Forum: Fixing WordPress
In reply to: Remove page url on sub-pagesI would need to know this as well
Forum: Requests and Feedback
In reply to: Danish characters sanitize in URLOk.. I don’t understand but I think I will just .. trust you 🙂
Forum: Requests and Feedback
In reply to: Danish characters sanitize in URLHi Ipstenu, thanks but this is not what I was asking. When I want to hack the core, I can do it in the one file I wrote above instead of three files described in your link.
I was asking, why do I need to hack the core, when adding this few lines only corrects danish language bug ?