Timothy Couckuyt
Forum Replies Created
-
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Hidden languages in WPMLHey Amjad,
You’re welcome!
If you’re refering to the lightbox media screen and not the “Media” tab in the admin area, I guess you would have to look for any actions or filters enabling you to specify wether the delete button can be shown on that screen. I would have to research myself to find out, but that’s the first thing I always try to look for.
Hope this helps!
Good luck!
Forum: Plugins
In reply to: [Disqus Comment System] Please add-> wp_notify_postauthor($comment_id)One possible solution could be to hook into the “wp_insert_comment” action and use the wp_notify_postauthor function when the ‘comment_agent’ data variable contains the Disqus string ๐
Forum: Plugins
In reply to: [Disqus Comment System] Please add-> wp_notify_postauthor($comment_id)Would love to know this too… A much requested feature.
Forum: Plugins
In reply to: [Contact Form 7] Default behaviour of radio buttons after submitI noticed the same bug… Anyone got a fix for this?
Forum: Plugins
In reply to: [Advanced Custom Fields (ACFยฎ)] Don't update to 4.2.1 yet!Had the same issue here. Thanks for posting.
A client of mine just reported this issue being the cause of a conflict with the qtranslate slug plugin. This might help ๐
Any solution on this issue?
Hey guys,
You could also, instead of installing an extra plugin, make use of the ‘posts_where’ filter in your theme when you want to limit the view of attachments to the ones uploaded by the current user:
add_filter( 'posts_where', 'devplus_attachments_wpquery_where' ); function devplus_attachments_wpquery_where( $where ){ global $current_user; if( is_user_logged_in() ){ // we spreken over een ingelogde user if( isset( $_POST['action'] ) ){ // library query if( $_POST['action'] == 'query-attachments' ){ $where .= ' AND post_author='.$current_user->data->ID; } } } return $where; }That’s a bit more performing I guess ๐
Forum: Plugins
In reply to: [WooCommerce] Using WooCommerce for event / course bookingsHey jacopo3001,
Which one might that be exactly? ๐
That’s a shame really… I’ll disable and uninstall the plugin. Not usable for me in this case.
Also; Both plugins use the last stable version. WordPress is 3.4.1.
I wasn’t very clear on when I get this message: I get this message when posting a comment on a blog’s single’s page. On post level I get the message as stated in my first post.