CAUSE: This issue occurs because both WordPress and Atahualpa are converting special characters in the title to the HTML equivalent.
FIX: edit bfa_meta_tags.php and find line 67-72 wich will be
HTML Code:
if ( $bfa_meta_title != '' ) { #$bfa_ata_page_title = $bfa_meta_title; $bfa_ata_page_title = htmlentities($bfa_meta_title,ENT_QUOTES,'UTF-8'); } else { $bfa_ata_page_title = htmlentities(single_post_title('', false),ENT_QUOTES,'UTF-8'); }
HTML Code:
if ( $bfa_meta_title != '' ) { #$bfa_ata_page_title = $bfa_meta_title; $bfa_ata_page_title = htmlentities($bfa_meta_title,ENT_QUOTES,'UTF-8'); } else { $bfa_ata_page_title = single_post_title('', false); }
bfa_meta_tags.php.zip
reported in http://forum.bytesforall.com/showthr...6522#post36522