aliciagh
Member
Posted 2 years ago #
I've found a bug in load_plugin_textdomain function.
Third parameter is a relative path to WP_PLUGIN_DIR but you use an absolut path. This is fixed changing:
load_plugin_textdomain ( 'simpletags', false, STAGS_DIR . 'languages' );
for:
load_plugin_textdomain ( 'simpletags', false, STAGS_FOLDER . '/languages' );
http://wordpress.org/extend/plugins/simple-tags/
Hey Alicia, can you please indicate the exact file where that function can be found?
I'd like to user the internationalization option as well and your fix might just do it.
Many thanks!
biralucena
Member
Posted 2 years ago #
Simple Tags 1.8 => simple-tags.php => line 70, below "// Load translations"