Support

Account

Forum Replies Created

  • Awesome, thx for your help, for me works:
    NOT THIS
    'tagsdiv-{$tax-name}' - Custom taxonomies metabox
    BUT THIS
    '{$tax-name}div' - Hierarchical custom taxonomies metabox
    because I have setup:
    hierarchical: true

    hope it helps too for the future 🙂

  • What is your version of WP and version of ACF?

  • First of all try to let it show on all possible pages and check if it’s still “missing”. If shows up then you know that u need to make some fixes in your field group display settings. Hope it helps.

  • Hi. Are you using php display method or shortcode method in editor?

  • Make sure that your page is set to display this field in your field group settings.

  • Nice plugin, good job @happiness 🙂

    Anyway we can use filters like this example:

    add_filter('wp_nav_menu_items', 'my_wp_nav_menu_items', 10, 2);
    
    function my_wp_nav_menu_items( $items, $args ) {
        $menu = wp_get_nav_menu_object($args->menu);
        $menuSlug = $menu->slug;
        if ($menuSlug == 'hamburger-menu') {
            if (is_user_logged_in()) {
                $items .= '<li id="menu-item-logout" class="menu-item menu-item-logout"><a href="'. wp_logout_url(home_url()) .'">LOGOUT</a></li>';
            } else {
                $items .= '<li id="menu-item-login" class="menu-item menu-item-login"><a href="'. home_url() .'/logowanie">LOG IN</a></li>';
            }
        }
        return $items;
    }

    This is an answer for related question “How to add items to an ACF Nav Menu?”
    Hope it helps for future questions about it.

  • OK, I found it! 🙂

    You need add this in your functions.php:

    function id_WPSE_114111() {
        echo "<pre>";
        var_dump(get_current_screen());
        echo "</pre>";
    }
    
    add_action( 'admin_notices', 'id_WPSE_114111' );

    Now you can find in your options page line looking like this:
    ["id"]=>string(37) "header-footer_page_acf-options-footer"

    You need to copy id from quotes and paste it in the file wpm-config.json like this:

    {
      "admin_pages": [
        "header-footer_page_acf-options-footer"
      ]
    }

    Hope it helps. Working for me 🙂

    DON’T forget to remove var_dump code from functions.php after everything.

  • I found a solution on WP Multilang support, but not working for me ;/
    SOLUTION: You need to add your option page_id to config in “admin_pages”

    What i did:
    in theme directory created file wpm_config.json and inside:
    {
    “admin_pages”: {
    “acf-options-footer”: {}
    }
    }

  • Same problem here.
    Any ideas?

  • It looks like the problem is in the ACF qTranslate plugin. Thank you for your answer John.

  • Hi, i don’t have store account, but still i need older version, because after update filed type qtransale_text has been removed, and all my fields have error now ;/
    Please give me a link to older viersion with this field type.

Viewing 11 posts - 1 through 11 (of 11 total)