Title: Timothy Couckuyt's Replies - page 2 | WordPress.org

---

# Timothy Couckuyt

  [  ](https://wordpress.org/support/users/devplus_timo/)

 *   [Profile](https://wordpress.org/support/users/devplus_timo/)
 *   [Topics Started](https://wordpress.org/support/users/devplus_timo/topics/)
 *   [Replies Created](https://wordpress.org/support/users/devplus_timo/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/devplus_timo/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/devplus_timo/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/devplus_timo/engagements/)
 *   [Favorites](https://wordpress.org/support/users/devplus_timo/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 16 through 27 (of 27 total)

[←](https://wordpress.org/support/users/devplus_timo/replies/?output_format=md) 
[1](https://wordpress.org/support/users/devplus_timo/replies/?output_format=md) 
2

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[XML Sitemap Generator for Google] Hidden languages in WPML](https://wordpress.org/support/topic/hidden-languages-in-wpml/)
 *  Thread Starter [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/hidden-languages-in-wpml/#post-3839389)
 * Hey 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Disqus Comment System] Please add-> wp_notify_postauthor($comment_id)](https://wordpress.org/support/topic/please-add-wp_notify_postauthorcomment_id/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/please-add-wp_notify_postauthorcomment_id/#post-3353407)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Disqus Comment System] Please add-> wp_notify_postauthor($comment_id)](https://wordpress.org/support/topic/please-add-wp_notify_postauthorcomment_id/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/please-add-wp_notify_postauthorcomment_id/#post-3353406)
 * Would love to know this too… A much requested feature.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Default behaviour of radio buttons after submit](https://wordpress.org/support/topic/default-behaviour-of-radio-buttons-after-submit/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/default-behaviour-of-radio-buttons-after-submit/#post-3234864)
 * I noticed the same bug… Anyone got a fix for this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] Don't update to 4.2.1 yet!](https://wordpress.org/support/topic/dont-update-to-421-yet/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/dont-update-to-421-yet/#post-4018810)
 * Had the same issue here. Thanks for posting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] W3 Total Cache Error: Files and directories could not be automatically created t](https://wordpress.org/support/topic/w3-total-cache-error-files-and-directories-could-not-be-automatically-created-t/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/w3-total-cache-error-files-and-directories-could-not-be-automatically-created-t/#post-3752283)
 * A client of mine just reported this issue being the cause of a conflict with 
   the qtranslate slug plugin. This might help 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] W3 Total Cache Error: Files and directories could not be automatically created t](https://wordpress.org/support/topic/w3-total-cache-error-files-and-directories-could-not-be-automatically-created-t/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/w3-total-cache-error-files-and-directories-could-not-be-automatically-created-t/#post-3752281)
 * Any solution on this issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Restrict "Editors" from viewing media that others have uploaded](https://wordpress.org/support/topic/restrict-editors-from-viewing-media-that-others-have-uploaded/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/restrict-editors-from-viewing-media-that-others-have-uploaded/#post-3324542)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Using WooCommerce for event / course bookings](https://wordpress.org/support/topic/using-woocommerce-for-event-course-bookings/)
 *  [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/using-woocommerce-for-event-course-bookings/#post-3252073)
 * Hey jacopo3001,
 * Which one might that be exactly? 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Spam Free WordPress] W3 Total cache and generic spam free wordpress error on post level](https://wordpress.org/support/topic/w3-total-cache-and-generic-spam-free-wordpress-error-on-post-level/)
 *  Thread Starter [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/w3-total-cache-and-generic-spam-free-wordpress-error-on-post-level/#post-3365341)
 * That’s a shame really… I’ll disable and uninstall the plugin. Not usable for 
   me in this case.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Spam Free WordPress] W3 Total cache and generic spam free wordpress error on post level](https://wordpress.org/support/topic/w3-total-cache-and-generic-spam-free-wordpress-error-on-post-level/)
 *  Thread Starter [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/w3-total-cache-and-generic-spam-free-wordpress-error-on-post-level/#post-3365229)
 * Also; Both plugins use the last stable version. WordPress is 3.4.1.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Spam Free WordPress] W3 Total cache and generic spam free wordpress error on post level](https://wordpress.org/support/topic/w3-total-cache-and-generic-spam-free-wordpress-error-on-post-level/)
 *  Thread Starter [Timothy Couckuyt](https://wordpress.org/support/users/devplus_timo/)
 * (@devplus_timo)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/w3-total-cache-and-generic-spam-free-wordpress-error-on-post-level/#post-3365206)
 * 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.

Viewing 12 replies - 16 through 27 (of 27 total)

[←](https://wordpress.org/support/users/devplus_timo/replies/?output_format=md) 
[1](https://wordpress.org/support/users/devplus_timo/replies/?output_format=md) 
2