Title: blackendcode's Replies | WordPress.org

---

# blackendcode

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redux Framework] Translation Issue with Redux Framework – Custom Text Domain](https://wordpress.org/support/topic/translation-issue-with-redux-framework-custom-text-domain/)
 *  [blackendcode](https://wordpress.org/support/users/blackendcode/)
 * (@blackendcode)
 * [7 months, 2 weeks ago](https://wordpress.org/support/topic/translation-issue-with-redux-framework-custom-text-domain/#post-18682200)
 * This error is happening because the Redux plugin is loading config before init,
   redux is loading itself on plugin_loaded hook which is before init. 
   This means
   that if you are using config with translation functions in it you will get always
   this error. It is bug that need to be solved in Redux itself by the author.Fix
   is easy just instead of plugins_loaded hook Author should do this on init hook
   which is a good way to load configration if Redux want to use transaltion. Quick
   workaround for this is to Init Redux config on hook [<var>**after_setup_theme**</var>](https://wp-kama.com/hook/after_setup_theme)
   Here is oredre how wordpress hooks are triggered. All you need to do is to load
   Redux after load_textdomain hook. [<var>mu_plugin_loaded</var>](https://wp-kama.com/hook/mu_plugin_loaded)
   [<var>network_plugin_loaded</var>](https://wp-kama.com/hook/network_plugin_loaded)
   [<var>muplugins_loaded</var>](https://wp-kama.com/hook/muplugins_loaded) — all
   [must-use plugins](https://wp-kama.com/1539/mu-plugins) are connected.[<var>registered_taxonomy</var>](https://wp-kama.com/hook/registered_taxonomy)
   [<var>registered_post_type</var>](https://wp-kama.com/hook/registered_post_type)
   [<var>plugin_loaded</var>](https://wp-kama.com/hook/plugin_loaded)[<var>plugins_loaded</var>](https://wp-kama.com/hook/plugins_loaded)—
   all plugins are plugged in.[<var>sanitize_comment_cookies</var>](https://wp-kama.com/hook/sanitize_comment_cookies)
   [<var>setup_theme</var>](https://wp-kama.com/hook/setup_theme) — before loading
   the theme functions.php file.[<var>load_textdomain</var>](https://wp-kama.com/hook/load_textdomain)
   [<var>after_setup_theme</var>](https://wp-kama.com/hook/after_setup_theme) — 
   the functions.php theme file is loaded.[<var>auth_cookie_malformed</var>](https://wp-kama.com/hook/auth_cookie_malformed)
   [<var>auth_cookie_valid</var>](https://wp-kama.com/hook/auth_cookie_valid)[<var>set_current_user</var>](https://wp-kama.com/hook/set_current_user)
   [<var>init</var>](https://wp-kama.com/hook/init)Note:**This is workaround untill
   plugin author fix this in the plugin itself. **
 * ![](https://wordpress.org/0de8745c-9a0d-41ca-b7fd-a8df4ced5c5e)
    -  This reply was modified 7 months, 2 weeks ago by [blackendcode](https://wordpress.org/support/users/blackendcode/).
    -  This reply was modified 7 months, 2 weeks ago by [threadi](https://wordpress.org/support/users/threadi/).

Viewing 1 replies (of 1 total)