[Plugin: wpec-product-slider] Missing options
-
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.
- The topic ‘[Plugin: wpec-product-slider] Missing options’ is closed to new replies.