doutuobao4004 2018-12-11 21:13
浏览 122
已采纳

隐藏Woocommerce中产品变体设置的重量和尺寸字段

I am working on a website that does not need the shipping weight and dimensions in WooCommerce. On the admin area - when adding a new product, there is the shipping tab which has this option. Is there a way to hide it? I tried using the following CSS but it did not work. I have been looking for a way to use my functions.php file to remove it but cannot figure out how. Here is what I tried:

p.form-field._weight_field {display:none;}

p.form-field .dimensions_field {display:none;}

.woocommerce_options_panel .options_group:first-child{display:none 
!important;}

I tried that in multiple variations with no luck. Does anyone know of a way to use the functions.php file and hide just the weight and dimensions input area?

  • 写回答

2条回答 默认 最新

  • dpzzkfb1244 2018-12-11 23:49
    关注

    Hiding product weight and dimensions fields in Admin product pages settings.

    1) For product post type you will use:

    // Products
    add_action( 'woocommerce_product_options_general_product_data', 'hide_product_weight_and_dimentions' );
    function hide_product_weight_and_dimentions(){
        ?><style>
            div#shipping_product_data ._weight_field, div#shipping_product_data .dimensions_field { display:none !important;}
        </style><?php
    }
    

    2) For Product variations you will use:

    // Variations
    add_action( 'woocommerce_variation_options_pricing', 'hide_variation_weight_and_dimentions', 10, 3 );
    function hide_variation_weight_and_dimentions( $loop, $variation_data, $variation ){
        ?><style>
            .variable_weight<?php echo $loop ?>_field, .dimensions_field { display:none !important;}
        </style><?php
    }
    

    Code goes in function.php file of your active child theme (or active theme). Tested and works.

    On a simple product:

    enter image description here

    On a product variation from a variable product:

    enter image description here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了