• I like the plugin, works just fine, I only find it annoying that there is an extra Pimwick Plugins Admin Panel Menu Item. It would be great if that was hidden (without custom coding), since all the settings are available at woocommerce -> PW gift cards. It’s just bloating up the admin area.

Viewing 1 replies (of 1 total)
  • Plugin Author pimwick

    (@pimwick)

    Thanks for the feedback! We will look into making this a configuration setting directly in the plugin.

    In the meantime, you can follow these instructions to hide the Pimwick Plugins menu.

    Note: this change can be made to your functions.php if you prefer that option.

    1. Download the free Code Snippets plugin: https://www.ads-software.com/plugins/code-snippets/
    2. Create a Snippet with the following code:

    function remove_pimwick_plugins_menu( $columns ) {
    remove_menu_page( ‘pimwick’ );
    }
    add_action( ‘admin_menu’, ‘remove_pimwick_plugins_menu’, 99, 1 );

    Let me know if you have any questions!

Viewing 1 replies (of 1 total)
  • The topic ‘Good, but unnecessary Admin Menu Item’ is closed to new replies.