• Hi!
    How to disable the “recreate sku” button in the product card. It shouldn’t be, because if we stick labels to products with a sku number and then one of the employees accidentally clicks, we won’t be able to find a product in stock with such a sku.

Viewing 1 replies (of 1 total)
  • Plugin Author Dan Zakirov

    (@alexodiy)

    There are no settings in the plugin to hide the icon. You can use for example admin_head hook, add styles to admin interface and hide icon with styles

    add_action('admin_head', 'pds_custom_styles');
    function pds_custom_styles(){
        echo'<style>a#reflesh{display: none;}</style>';
    }

    Insert the code into functions.php of the theme

Viewing 1 replies (of 1 total)
  • The topic ‘Disable recreate SKU in the product card’ is closed to new replies.