How to automatically translate plugin using translate.wordpress.org

I do not know WPML, but if it works like Polylang, It should download the language pack for all plugins installed on your website from translate.wordpress.org. In translate.wordpress.org, a plugin in a locale must be completed at 90% to be available on your WordPress. As you’re using WPML which is a premium plugin, you should … Read more

WPML taxonomies not translated

hack for filter the_terms: $terms = get_terms(‘YOUR-TAXONOMY’,’hide_empty=1′ ); if (!empty( $terms )){ $term_links = “”; foreach ( $terms as $term ) { if($term->term_id == icl_object_id($term->term_id,’YOUR-TAXONOMY’,false,ICL_LANGUAGE_CODE)){ $term_links[] = ‘<li><a href=”‘.$category_url.’?YOUR-TAXONOMY=’. $term->slug.'”> ‘ . $term->name . ” . $term->name . ‘</a></li>’; } } echo join( ”, $term_links ); }

Translate custom template with WPML

To translate custom page templates you must select “Synchronize page template” in WPML options. For it to actually work the page template markup must be localized or internationalized using a recognized format, for example http://codex.wordpress.org/I18n_for_WordPress_Developers, and then have an accompanying .mo/.po file . WPML also has an addon called “String Translation module” which can scan … Read more

WP-e-commerce (getshopped) – Annoying permalink issue [closed]

Apologies, I find this a little bit a non-issue as it states clearly everywhere that WPML works 100% when you use a permalinks structure of day and name (http://domain.com/2012/02/07/sample-post/). If this is something you cannot accept, then you’s better come to terms with the fact that WPML most likely is not going to work 100% … Read more