Title: Lautobus's Replies | WordPress.org

---

# Lautobus

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

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

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp User Sync] Prevent new user creation when Mailchimp subscriber change email](https://wordpress.org/support/topic/prevent-new-user-creation-when-mailchimp-subscriber-change-email/)
 *  Thread Starter [Lautobus](https://wordpress.org/support/users/zerbil/)
 * (@zerbil)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/prevent-new-user-creation-when-mailchimp-subscriber-change-email/#post-10851081)
 * Answer to myself:
 * The “new user creation” is define at the end of file ‘mailchimp-sync.php’ inside
   the mailchimp_sync_webhook_user filter.
    As it’s define through a anonymous function
   I didn’t find a clean way to override it. The only solution I could find was 
   to use ‘remove_all_filter’ and re-define a new custom filter.
 *     ```
       // Remove default webhook filter to avoid automatic user creation -> 'mailchimp-sync.php'
       remove_all_filters( 'mailchimp_sync_webhook_user', 10 );
       // define custom mailchimp_sync_webhook_user callback
       add_filter( 'mailchimp_sync_webhook_user', 'filter_mailchimp_sync_webhook_user', 10, 2 );
       function filter_mailchimp_sync_webhook_user( $user, $data ) {
       // action you want goes here
       }
       ```
   
    -  This reply was modified 7 years, 6 months ago by [Lautobus](https://wordpress.org/support/users/zerbil/).
    -  This reply was modified 7 years, 6 months ago by [Lautobus](https://wordpress.org/support/users/zerbil/).
    -  This reply was modified 7 years, 6 months ago by [Lautobus](https://wordpress.org/support/users/zerbil/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Mail subject character encoding](https://wordpress.org/support/topic/mail-subject-character-encoding/)
 *  Thread Starter [Lautobus](https://wordpress.org/support/users/zerbil/)
 * (@zerbil)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/mail-subject-character-encoding/#post-9692602)
 * Sorry for late response, didnt get the follow-up replies 😀
 * I think you are right, I’m using osx Mail on my Desktop but when looking with
   same Mail on my iPhone, the emails subjects just display fine.
 * So it seems to be mailer client related issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Attendees from multilingual events](https://wordpress.org/support/topic/attendees-from-multilingual-events/)
 *  Thread Starter [Lautobus](https://wordpress.org/support/users/zerbil/)
 * (@zerbil)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/attendees-from-multilingual-events/#post-3184549)
 * Even if your answer was not the easy way I was looking for, your tip is what 
   is more accurate up to now.
 * Hope this kind of problem would be resolve in further updates 🙂
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SB Child List] [Plugin: SB Child List] No child pages show siblings](https://wordpress.org/support/topic/plugin-sb-child-list-no-child-pages-show-siblings/)
 *  Thread Starter [Lautobus](https://wordpress.org/support/users/zerbil/)
 * (@zerbil)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-sb-child-list-no-child-pages-show-siblings/#post-2912911)
 * This “problem” is in fact the “normal” behavior of this plugin. It’s not really
   clean but the easy solution is to delete some line in the file (sb_child_list.
   php).
 * you must find (more or less at the middle of the file) the “function sb_cl_render_child_list”.
   At the end of this function, you will find the following code:
 *     ```
       else if ($nest_level == 1) {
       		$parent = get_page($id);
       		if ($parent->post_parent) {
       			$return .= sb_cl_render_child_list($template_id, $parent->post_parent, $nest_level, $order);
       		}
       	}
       ```
   
 * Just delete it and it will be allright 🙂
 * I’m not sure that this trick has no other effects so use it carefully and be 
   sure to remember the change when you upgrade the plugin.
 * Hope it helps,
 * Cheers !! 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Knews Multilingual Newsletters] [Plugin: Knews Multilingual Newsletters] Processing shortcode in %the_content_1%](https://wordpress.org/support/topic/plugin-knews-multilingual-newsletters-processing-shortcode-in-the_content_1/)
 *  Thread Starter [Lautobus](https://wordpress.org/support/users/zerbil/)
 * (@zerbil)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-knews-multilingual-newsletters-processing-shortcode-in-the_content_1/#post-2927827)
 * That did the job !
 * Thanks alot !

Viewing 5 replies - 1 through 5 (of 5 total)