• Resolved tom

    (@klickchoice)


    i need to remove some items in the quickedit panel .Let me know is there any way to hide product attribute list from quick edit window of product page in woocommerce? Currently iam doing this via css .But i think there are more better solution . Please help .

    Currently quick edit contain all the product attribute so the quick edit window is too large .

    Currently what I am doing is

    function hid_function_hide_attribue(){
         global $post_type;
        if( 'product' != $post_type ){
    
            return;
        }
    
        else{ ?>
        <style type="text/css">
    .pa_mobile-brands-checklist ,  .pa_laptop-brands-checklist , .pa_tablet-brands-checklist , .pa_toys-checklist , .pa_mobile-type-checklist, .pa_tablet-tablet-type-checklist , .pa_laptop-type-checklist , .pa_perfume-brands-checklist , .pa_sunglasses-brands-checklist , .pa_watches-brands-checklist , .pa_shoes-size-checklist , .pa_camera-brands-checklist , .pa_mobile-storage-checklist , .pa_mobile-memory-checklist , .pa_mobile-screen-size-checklist
        {
            display:none;
    
        } 
    
        </style>
    <?php } }
    add_action( 'admin_head-edit.php', 'hid_function_hide_attribue' );
     ?>

    in function.php, but it is not good method

    https://www.ads-software.com/plugins/woocommerce/

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to remove items in quick edit panel of woocommerce products’ is closed to new replies.