Custom Meta Field not Working with qTranslate [closed]
Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be … Read more
Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be … Read more
I am setting up a multi-language site using wordpress multi-site and wanted some feedback on the best approach/best practice. I will have the … Read more
I want to change primary menu according to the language of the user. I have reviewed multi language plugins such as WPML and … Read more
I am trying to set up a multilingual site using wordpress. I went through Each language in its own WordPress installation and decided … Read more
I’ve taken over a website targeting different markets using five language versions, each is setup as it’s own site within a multisite network. … Read more
The function is_rtl() checks the blog language direction if it is LTR or RTL. public function is_rtl() { return ‘rtl’ == $this->text_direction; } … Read more
I’m building a WordPress site which I hope to offer in three languages namely: English Spanish French In the past I’ve always built … Read more
My wpconfig.php file: define(‘WPLANG’, ‘tr_TR’); My Code: echo ‘<div id=”wtdCustomizButtonDetailsPage”><a href=”‘. $getCustomPage .’?type=wtd_sc_designer&wtd_id=’. $id .'”>’. __(‘Customize’, ‘wctd’) .'</a></div>’; My PO File Naming: Inside … Read more
Im currently trying to make my backend work with multiple languages. Im using qTranslate as my translation plugin. So far I have accomplished … Read more
In my plugin’s init function load_textdomain( ‘myplugin’, ABS_PATH_TO_MO_FILE ); // OK load_plugin_textdomain( ‘myplugin’, false, ABS_PATH_TO_LANGS_DIR); // No effect echo( __(‘Test’, ‘myplugin’) ); In … Read more