Viewing 4 replies - 31 through 34 (of 34 total)
  • Awesome Sfradel! Thanks a lot ??

    Hello,

    This is great! These modifications helps me a lot, but is there any way they could be made a part of the official software? Or is there any other way to make the changes stick? Otherwise, next time I update my software, I suppose the modifications will be overwritten?

    As I understand it, you have made modifications in two files: functions.php and wp-seo-metabox.js, where the first one belongs to WordPress itself and the second to the SEO plugin. Is that correct?

    All the Best,
    Per Q A

    perqa this is correct. Only wp-seo-metabox.js will be ovewritten if you update the plugin. I will contact with him to see if he could incorporate the needed js modifications.
    There will be not problem with functions.php as long as the plugin author does not change the filters (I do not find any reason to do so).

    // Enable qTranslate for WordPress SEO
    	function qtranslate_filter($text){
    		return __($text);
    	}
    	add_filter('wpseo_title', 'qtranslate_filter', 10, 1);
    	add_filter('wpseo_metadesc', 'qtranslate_filter', 10, 1);
    	add_filter('wpseo_metakey', 'qtranslate_filter', 10, 1);

    works with 3.4.1 – thx

Viewing 4 replies - 31 through 34 (of 34 total)
  • The topic ‘[Plugin: WordPress SEO] Yoast SEO and Qtranslate’ is closed to new replies.