Title: Stefan Pasch's Replies | WordPress.org

---

# Stefan Pasch

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[shipcloud for WooCommerce] Fatal when creating shipping labels](https://wordpress.org/support/topic/fatal-when-creating-shipping-labels/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/fatal-when-creating-shipping-labels/#post-10679721)
 * Hey [@andrecedik](https://wordpress.org/support/users/andrecedik/)
 * Thanks! Looks good now.
 * Best
    Stefan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[shipcloud for WooCommerce] Fatal Error after activation plugin](https://wordpress.org/support/topic/fatal-error-after-activation-plugin/)
 *  [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/fatal-error-after-activation-plugin/#post-10637728)
 * Hi [@andrecedik](https://wordpress.org/support/users/andrecedik/)
 * Same here. Just wanted to update my installation, but with the latest version
   i get the same error.
 * With the plugin activated, i’m not able to get into the wp-admin or any other
   page (cause of the fatal).
 * Let me know what info you need to be able to solve that.
 * Thanks and best
    Stefan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Feedback] Change FEEDBACK Button Text](https://wordpress.org/support/topic/change-feedback-button-text/)
 *  [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/change-feedback-button-text/#post-9746925)
 * Hi [@stephenpasquini](https://wordpress.org/support/users/stephenpasquini/)
 * You can change all string via the custom filter `user_feedback_script_data`. 
   In your case, to change the button label just put this inside your `functions.
   php`.
 *     ```
       function custom_user_feedback_script_data( $data ) {  
               $data['templates']['button']['label'] = __( 'Report Error', 'your-textdomain' );  
   
               return $data;
           }
   
           add_filter( 'user_feedback_script_data', 'custom_user_feedback_script_data' );
       ```
   
 * This should do the trick.
 * Best
    Stefan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Supertext Translation and Proofreading] Supertext API returned unsupported data. Supertext doesn’t support “und”.](https://wordpress.org/support/topic/supertext-api-returned-unsupported-data-supertext-doesnt-support-und/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/supertext-api-returned-unsupported-data-supertext-doesnt-support-und/#post-8352762)
 * Hi there
 * already got the problem. There was a undefined language in polylang, comin’ from
   an import.
 * Thank you anyway.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Session Manager] Can't update properties of stored objects](https://wordpress.org/support/topic/cant-update-properties-of-stored-objects/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [12 years ago](https://wordpress.org/support/topic/cant-update-properties-of-stored-objects/#post-4958435)
 * Hi Eric
 * i don’t really have changes. The bug still exists. I just have a simple workaround.
 * Whenever i change a property inside a object in the session, i’ll update a changed
   flag on the session array too, so the “dirty” flag gets updated and the session
   data will be rewritten.
 * This will work
 *     ```
       $s = WP_Session::get_instance();
       $s['obj']->test = 'nope';
       $s['myupdateflag'] = microtime();
       ```
   
 * This won’t work
 *     ```
       $s = WP_Session::get_instance();
       $s['obj']->test = 'nope';
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Session Manager] Can't update properties of stored objects](https://wordpress.org/support/topic/cant-update-properties-of-stored-objects/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [12 years ago](https://wordpress.org/support/topic/cant-update-properties-of-stored-objects/#post-4958250)
 * Ok, it seems the dirty flag doesn’t get updated when properties of an object 
   are changed. I’ve solved this now by adding a changed flag by myself as a root
   array element, which will cause the dirty flag to get updated.
 * Strange anyway.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Language switcher sortorder of items](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/#post-4775286)
 * Hey Chouby
 * thanks for pointing in that direction. It’s in fact the plugin [https://wordpress.org/plugins/taxonomy-terms-order/](https://wordpress.org/plugins/taxonomy-terms-order/)
   that causes the wrong sorting of language items in the nav. There is a Auto Sort
   option, when switching that off, the lang nav looks fine.
 * Thanks for your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Language switcher sortorder of items](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/#post-4775271)
 * No, that menu is not ordered correctly, too. -> [http://cl.ly/image/1X1k3c200B47](http://cl.ly/image/1X1k3c200B47)
 * We’re using MySQL 5.5.28.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Language switcher sortorder of items](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/#post-4775268)
 * With the Language Switcher menu item ([http://cl.ly/image/0K190G1T3s2r](http://cl.ly/image/0K190G1T3s2r)).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Language switcher sortorder of items](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/)
 *  Thread Starter [Stefan Pasch](https://wordpress.org/support/users/hubersen/)
 * (@hubersen)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/language-switcher-sortorder-of-items/#post-4775254)
 * You’re right. And in the backend view this field is used for ordering the languages,
   as it seems ([http://cl.ly/image/0t2B1l2y150r](http://cl.ly/image/0t2B1l2y150r)).
   But using the language switcher item in a menu, the frontend view is sorted in
   another way ([http://cl.ly/image/1P0m2V303Y3X](http://cl.ly/image/1P0m2V303Y3X)).
 * Thanks for your help so far.

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