• Resolved Bloke

    (@bloke)


    I am using this theme that used advanced custom fields. They use the custom fields for the product slider.I thought it was strange I couldn’t see the menu in the admin panel. So I found a function that was hiding it.
    `function hide_admin_menu()
    {
    global $current_user;
    get_currentuserinfo();

    if ($current_user->user_login != ‘admin’) {
    echo ‘<style type=”text/css”>#toplevel_page_edit-post_type-acf{display:none;}</style>’;
    }
    }

    add_action(‘admin_head’, ‘hide_admin_menu’);

    After I removed it now it shows. But only see the menu button called “Custom Fields” and two links below called “Custom Fields” and “Settings”. On the Setting page is lists addons, export for PHP and XML. But no options to create new fields. Anyone know how I can restore this? Using version 3.5.8.1

    When I go to custom fields, it says “No Field Groups found” yet they are all there in the post.

Viewing 1 replies (of 1 total)
  • Thread Starter Bloke

    (@bloke)

    I got it figured out. I didn’t see the “add new” button on the top of the page. I was able to add a new custom field and it didn’t effect the ones created by the developer. I guess if I need to change them I can edit the code. Because they don’t show up in the ACF window.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: wpec-product-slider] Missing options’ is closed to new replies.