Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Brecht

    (@brechtvds)

    Hi there,

    On the Recipes > Settings > Recipe Tags page you can disable “Use Categories and Tags”

    On the Recipes > Custom Tags page you can rename or remove custom tags like “Cuisines”

    Kind regards,
    Brecht

    Thread Starter joydeep

    (@joydeep)

    Hi,
    Thanks for your kind support.
    “On the Recipes > Settings > Recipe Tags page you can disable “Use Categories and Tags””

    Here can I disable only Tags not Categories?
    And can’t find Custom Tags under Recipes. Actually I want to rename “Cuisines” sub menu to “Multi Cuisines”.

    Plugin Author Brecht

    (@brechtvds)

    Hi,

    In the settings it’s only possible to disable both at once.
    If you only want tags disabled, try adding the following code to your theme’s functions.php file (with the setting enabled):

    function wpurp_register_post_type( $args )
    {
    $key = array_search( ‘post_tag’, $args[‘taxonomies’] );
    unset( $args[‘taxonomies’][$key] );

    return $args;
    }

    add_filter( ‘wpurp_register_post_type’, ‘wpurp_register_post_type’ );

    Are you using the latest 2.0.7 version? It should be somewhere above the Settings link. You can also get there from Recipes > Settings > Recipe Tags and clicking on the blue button.

    Brecht

    Thread Starter joydeep

    (@joydeep)

    Hi Brecht,

    Yes I am using 2.0.7 version. When click on “Manage custom recipe tags” buttons shows “You do not have sufficient permissions to access this page.”

    Plugin Author Brecht

    (@brechtvds)

    Are you an administrator on the website?
    This is only accessible by users with the administrator role.

    Thread Starter joydeep

    (@joydeep)

    I am a developer and customize to plugin menu.Wish to remove the “Cuisines” admin sub menu link and also while posting a recipe. Any suggestion on this please.

    Plugin Author Brecht

    (@brechtvds)

    I know what it is you want to do and this can be done from the “Custom Tags” page, as mentioned before, but this is only accessible by users with the “Administrator” role on your website.

    Does your user have the administrator role?

    Thread Starter joydeep

    (@joydeep)

    I can only find the option to edit the custom tags. I intend to remove the cuisine tag but cant find an option to do so.

    Plugin Author Brecht

    (@brechtvds)

    I thought you wanted to rename it to “Multi Cuisines”?
    Deleting and creating custom tags is actually only possible in the Premium version without custom code.

    Sorry for the confusion.

    Thread Starter joydeep

    (@joydeep)

    Thanks a lot for your support Brecht.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘How to modify admin sub menu?’ is closed to new replies.