Para o AAM 2.2.1 – Vá até o arquivo advanced-access-manager/application/view/metabox.php, na linha 249 … onde tem …
$content .= '</div>';
return json_encode(array('content' => $content));
E coloque o seguinte:
$content .= '</div>';
$content = utf8_encode($content);
return json_encode(array('content' => $content));
Abraços do Brasil.
Thank you GuTheR,
This might be a case. nutellino what language are you using?
Regards,
Vasyl
Hi GuTheR
I changed my plugin, but when I have time I will test this change and let you know.
thank you very much for your support, from italy 😉
WP AAM
language? italian or english ? …
Hi guys,
The latest 2.2.2 version has fix implemented.
Regards,
Vasyl
Mesmo com o AAM 2.2.3 só consegui carregar os metabox e widgets inserindo manualmente o run() na função que lista.
Na função buildMetaboxList():
protected function buildMetaboxList() {
global $wp_post_types;
$cache = aam_Core_API::getBlogOption('aam_metabox_cache', array());
Eu tive que colocar um loop para iniciar a lista:
protected function buildMetaboxList() {
global $wp_post_types;
foreach($wp_post_types as $key => $value)
$this->run($key);
$cache = aam_Core_API::getBlogOption('aam_metabox_cache', array());
Somente assim a lista apareceu.