Title: Laygen's Replies | WordPress.org

---

# Laygen

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/laygen/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/laygen/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Task Manager] Email Notifcation](https://wordpress.org/support/topic/email-notifcation/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/email-notifcation/#post-12462112)
 * This button don’t call the func “send_notification_followers_are_tags” of object
   Notify_Class.
 * This button call this one: [https://github.com/Eoxia/task-manager/blob/3.0.1/module/notify/action/notify.action.php#L132](https://github.com/Eoxia/task-manager/blob/3.0.1/module/notify/action/notify.action.php#L132)
 * Are u ok about programming ? If yes, use this filter task_manager_notify_send_notification_body(
   [https://github.com/Eoxia/task-manager/blob/3.0.1/module/notify/action/notify.action.php#L191](https://github.com/Eoxia/task-manager/blob/3.0.1/module/notify/action/notify.action.php#L191))
   for put what u wan’t in your email.
 * use add_filter wp func for attach your one code to this filter like this: [https://developer.wordpress.org/reference/functions/add_filter/](https://developer.wordpress.org/reference/functions/add_filter/)
    -  This reply was modified 6 years, 6 months ago by [Laygen](https://wordpress.org/support/users/laygen/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Task Manager] Email Notifcation](https://wordpress.org/support/topic/email-notifcation/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/email-notifcation/#post-12461817)
 * Hi,
 * -Can you please tell me you Task Manager version and WP ?
    -Are you talking about
   the notification when you use “@someone” on a comment ? I don’t have test it 
   on version 3.0.1, i will test it.
 * For the second question, we make a big review of the code on 3.0.0. Before this
   version, we didn’t have the notion of “Project”.
 * Before it was
    Task > Point > Comment Now Task => Project > Point => Task > Comment
   => Comment
 * I repeat again:
 * -Can you please tell me you Task Manager version and WP ?
    -Are you talking about
   the notification when you use “@someone” on a comment ? I don’t have test it 
   on version 3.0.1, i will test it.
 * See you soon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Task Manager] Confused about English versions?](https://wordpress.org/support/topic/confused-about-english-versions/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/confused-about-english-versions/#post-12364230)
 * English is supported. It’s the default language when we write a plugin.
 * Maybe some French words can be see in the plugin. I Will check that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Task Manager] After Update Dashboard Styles Gone/Broken?](https://wordpress.org/support/topic/after-update-dashboard-styles-gone-broken/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/after-update-dashboard-styles-gone-broken/#post-12363872)
 * Task Manager is working fine on my website [https://ibb.co/FgF4t50](https://ibb.co/FgF4t50)
 * I think it’s just a cache problem. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Task Manager] After Update Dashboard Styles Gone/Broken?](https://wordpress.org/support/topic/after-update-dashboard-styles-gone-broken/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/after-update-dashboard-styles-gone-broken/#post-12363178)
 * Are you try to clear your browser cache ?
 * I will check tomorrow on my website.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Hows to create a redirection “wildcard” function](https://wordpress.org/support/topic/hows-to-create-a-redirection-wildcard-function/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/hows-to-create-a-redirection-wildcard-function/#post-12065439)
 * For all url start with /devel/lms/ja/lessons/[slug]/
 *     ```
       <?php
   
       $tests_url = array();
       $tests_url[0] = '/devel/lms/ja/lessons/planning-a-meeting-int/';
       $tests_url[1] = '/devel/lms/ja/lessons/test/';
   
       $out = '';
   
       foreach ( $tests_url as $test_url ) {
          preg_match( '/\/devel\/lms\/ja\/(lessons)\/(.*)\//', $test_url, $out );
          var_dump( $out );
       }
       ```
   
 * For the first entry of tests_url: /devel/lms/ja/lessons/planning-a-meeting-int/
 * $out[0] = “/devel/lms/ja/lessons/planning-a-meeting-int/”
    $out[1] = “lessons”
   $out[2] = “planning-a-meeting-int”
 * For the second entry of tests_url: /devel/lms/ja/lessons/test/
 * $out[0] = “/devel/lms/ja/lessons/test/”
    $out[1] = “lessons” $out[2] = “test”
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Hows to create a redirection “wildcard” function](https://wordpress.org/support/topic/hows-to-create-a-redirection-wildcard-function/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/hows-to-create-a-redirection-wildcard-function/#post-12064500)
 * Hi,
 * You can use regex for do that, something like this return the * value:
 *     ```
       <?php
   
       $string = '/devel/lms/ja/lessons/planning-a-meeting-int/';
   
       $out = '';
   
       preg_match( '/\/devel\/lms\/ja\/lessons\/(.*)\//', $string, $out );
   
       var_dump( $out );
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [All blogs using wordpress](https://wordpress.org/support/topic/all-blogs-using-wordpress/)
 *  Thread Starter [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/all-blogs-using-wordpress/#post-7491382)
 * Oh of course. :p
 * Sorry, thanks for answer 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [All blogs using wordpress](https://wordpress.org/support/topic/all-blogs-using-wordpress/)
 *  Thread Starter [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/all-blogs-using-wordpress/#post-7491380)
 * Hi, sorry for up this topic resolved, but i just need to understand one thing.
 * When i make a request with inurl:wp-content/plugins/akismet on google, this request
   get 28 900 results.
 * Now i wanna search a little plugin with only 100 installation active, i try on
   the plugin : task manager.
 * So the request is inurl:wp-content/plugins/task-manager, this request make 0 
   result.
 * I don’t understand, in wordpress.org, this plugin have 100 installation active,
   so, why google say 0 result ?
 * Thanks for your help.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [All blogs using wordpress](https://wordpress.org/support/topic/all-blogs-using-wordpress/)
 *  Thread Starter [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/all-blogs-using-wordpress/#post-7491328)
 * Yes you have right.
    Thanks for your helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [All blogs using wordpress](https://wordpress.org/support/topic/all-blogs-using-wordpress/)
 *  Thread Starter [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/all-blogs-using-wordpress/#post-7491326)
 * Oh god… Thanks. Why i’m stupid haha.
 * So if i make a search engine with this query and i list all site with theirs 
   plugins details.
 * It is legal ?
 * Thanks again. 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [All blogs using wordpress](https://wordpress.org/support/topic/all-blogs-using-wordpress/)
 *  Thread Starter [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/all-blogs-using-wordpress/#post-7491323)
 * Have you an example for get the results of all wordpress site with akismet plugin?
 * Maybe with google search engine ?
 * Thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [All blogs using wordpress](https://wordpress.org/support/topic/all-blogs-using-wordpress/)
 *  Thread Starter [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/all-blogs-using-wordpress/#post-7491314)
 * Thanks for the answer.
 * I try to make a search engine for all WordPress site with key word as the name
   of a plugin.
 * So i need to index all WordPress sites and their plugin to a file or a database
   with a robot.
 * Is it legal to do this?
    How do I proceed? Does it already exist?
 * Thanks a lot for your help.
    Have a nice day. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Task Manager] Can't add Task](https://wordpress.org/support/topic/cant-add-task/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-add-task/#post-7354552)
 * Bonjour, désolé de la réponse tardive.
 * Le message à bien était reçu par mon équipe. On vous contactera dès que possible.
   C’est un peu le feu en ce moment.
 * Bonne journée.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Task Manager] Can't add Task](https://wordpress.org/support/topic/cant-add-task/)
 *  [Laygen](https://wordpress.org/support/users/laygen/)
 * (@laygen)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/cant-add-task/#post-7354480)
 * 1) Pour les rôles “Contributeur” et “Auteur” c’est normal. Seulement les rôles“
   Editeur” et “Administrateur” peuvent accéder à la gestion des tâches.
 * 2) Je suis actuellement sur Ubuntu, je ne peux pas avoir IE11.
 * 3) La seul documentation pour le moment est [ici](http://www.eoxia.com/tutoriel-du-plugin-task-manage).
   Il faut que j’en rédige une complète. ( C’est noté )
 * 4) Haha merci.. C’est corrigé sur la version du [github](https://github.com/Eoxia/task-manager)!
 * Pour les points 1, 2 et 3, je pourrai donner plus de détail Mercredi 11/05/16.
 * A bientôt. 🙂

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/laygen/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/laygen/replies/page/2/?output_format=md)