Viewing 6 replies - 1 through 6 (of 6 total)
  • 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

    Thread Starter nutellino

    (@nutellino)

    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 ??

    Thread Starter nutellino

    (@nutellino)

    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.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Metabox and widget’ is closed to new replies.