Thanks so much!!
This made me realize I had some old fixes in my functions.php which were likely addressed by you guys a loooong time ago! LOL! Removing the code below fixed the problem and everything still works — though I have not yet tried the WC3 validation thing! ??
Thanks again! ??
/*
=========================================================
Enables qTranslate to work with Custom Posts
=========================================================
*/
function qtranslate_edit_taxonomies(){
$args=array(
‘public’ => true ,
‘_builtin’ => false
);
$output = ‘object’; // or objects
$operator = ‘and’; // ‘and’ or ‘or’
$taxonomies = get_taxonomies($args,$output,$operator);
if ($taxonomies) {
foreach ($taxonomies as $taxonomy ) {
add_action( $taxonomy->name.’_add_form’, ‘qtrans_modifyTermFormFor’);
add_action( $taxonomy->name.’_edit_form’, ‘qtrans_modifyTermFormFor’);
}
}
}
add_action(‘admin_init’, ‘qtranslate_edit_taxonomies’);
/*
==========================================================
Removes output to <head> created by qTranslate causing WC3 validation error
==========================================================
*/
add_action(‘init’, ‘remove_header_info’);
function remove_header_info() {
remove_action(‘wp_head’, ‘qtrans_header’);
}