Button an description uploading images on a new add
Hi guys
Just wondering if someone can help me.
I add the code bellow to functions.php of my childtheme and it does what is supposed to do... disable the flash uploader for good.
But even before I add this code to functions.php, if I swapp to the normal uploader to add images to a new add the button to add the image does not translate in my other subdomains with diferent languages.
For eg: I have a pt.troiko.com subdomain and the button translation is fine but in the main domain that is in English and in my two others es.troiko.com and fr.troiko.com they display the button and description always in Portuguese.
Do you know a solution for this.
If you try to post an ad on
www.troiko.com you will see what I mean
Much appreciate if someone can help me.
function child_remove_appthemes_actions() {
remove_theme_support('app-plupload');
}
add_action('appthemes_init', 'child_remove_appthemes_actions');