将高级自定义字段添加到WooCommerce产品变体

时间:2016-05-16 23:33:20

标签: wordpress wordpress-plugin woocommerce advanced-custom-fields variations

我正在使用名为Advanced Custom Fields (ACF)和WooCommerce的插件。我想为WooCommerce产品变体创建一个文本和图像字段。我在ACF中创建了字段并将其分配给drawer

enter image description here

但是我没有在"Post Type" > "product_variation"下看到这些字段。我搜索过,看起来我必须编写一个自定义代码来容纳这些字段。我尝试搜索问题,我发现的大多数建议和教程都是关于通过代码创建自定义字段而不是使用ACF这对我没有帮助,因为字段必须使用ACF,这是因为我使用Visual Composer来提取这些前端的ACF字段。

enter image description here

3 个答案:

答案 0 :(得分:6)

这不是acf,但你只需要在 /public_html/wp-content/themes/yourtheme-child/function.php 下为你的孩子主题的“function.php”添加一些代码。

请查看本教程http://www.remicorson.com/mastering-woocommerce-products-custom-fields/

例如,在我的代码中,我为RRP添加了2个字段,另外一个用于个人用途(每对价格):

        /* Adds RRP or PPP* price after each product price throughout the shop for user != Customer & Guest
    .Not displayed in cart as it's not per var and we don't need to.
    PPP = Price Per Pair (for product composite/bundle display)
    ================================================== */

// Display Fields
add_action( 'woocommerce_product_options_general_product_data', 'woo_add_custom_general_fields' );

// Save Fields
add_action( 'woocommerce_process_product_meta', 'woo_add_custom_general_fields_save' );

function woo_add_custom_general_fields() {

    global $woocommerce, $post;

    // Text Field creation
woocommerce_wp_text_input( 
    array( 
        'id'          => '_rrpprice', 
        'label'       => __( 'RRP price ($)', 'woocommerce' ), 
        'placeholder' => 'e.g. 499',
        'desc_tip'    => 'true',
        'description' => __( 'Enter the RRP .', 'woocommerce' )
    )
);
woocommerce_wp_text_input( 
    array(  
        'id'          => '_pppprice', 
        'label'       => __( 'Price Per Pair*', 'woocommerce' ),
        'placeholder' => 'e.g. 122',
        'desc_tip'    => 'true',
        'description' => __( 'Enter the PPP (Price Per Pair) if Bundle/composite .', 'woocommerce' ) 
    )
);  
}
function woo_add_custom_general_fields_save( $post_id ){

    // TextField save
    $woocommerce_rrpprice = $_POST['_rrpprice'];
    update_post_meta( $post_id, '_rrpprice', esc_html( $woocommerce_rrpprice ) );
    if( !empty( $woocommerce_rrpprice ) )

    // TextField save
    $woocommerce_pppprice = $_POST['_pppprice'];
    if( !empty( $woocommerce_pppprice ) )
    update_post_meta( $post_id, '_pppprice', esc_html( $woocommerce_pppprice ) );
}

// Display Custom Field Value

if ( is_user_logged_in() && !(current_user_can('customer'))) {
    function sv_change_product_price_display( $price ) {
        $product = wc_get_product( get_the_ID() );
        $priceRRP = get_post_meta( get_the_ID(), '_rrpprice', true );
        $pricePPP = get_post_meta( get_the_ID(), '_pppprice', true );
          if ( (is_shop() || is_product()) && !is_cart() ) { //double belt check
            if($product->is_type( 'variable' )){
                $price .= ' + GST<br /><span class="rrp-price">RRP: $' . $priceRRP .'</span>';
            }else{

                $price = ' <span class="rrp-price"><b>$' . $pricePPP .' + GST </b></span>' . '<br /><span class="rrp-price">RRP: $' . $priceRRP .'</span>';
            }
          }
        return $price;          
    }
    add_filter( 'woocommerce_get_price_html', 'sv_change_product_price_display' );
    add_filter( 'woocommerce_cart_item_price', 'sv_change_product_price_display' );
}

如果您有任何疑问,请随时提出。

答案 1 :(得分:2)

据我所知,Advanced Custom Fields插件只允许您为编辑器添加自定义字段。这些字段不能用于构建前端 除了把手放在代码中。

如果要为产品添加自定义字段(以便客户可以进行个性化),则必须使用其他插件。我个人使用WC Fields Factory,它允许您为产品定义其他数据,如大小,颜色,图像等。只需使用新的 Field Factory 菜单。

当然应该有其他我没试过的。

答案 2 :(得分:0)

我本人也遇到了这个问题,并且鉴于WooCommerce更改的频率,我不愿意使用代码填充一些额外的字段。我确实找到了一个最小的代码变通办法,它可能会也可能无法满足您的需求。 本质上,它是在常规帖子中“代理”变体的自定义字段,并通过将帖子ID放入产品变体的SKU字段中来访问这些字段。

我从设置帖子类别“自定义字段”开始-通过重定向到类似名称的产品将其隐藏。 我为帖子类别设置了自定义字段:自定义字段,然后添加了一个帖子,例如“小部件x红色”,然后输入红色版本的自定义字段。 帖子保存后,我将帖子ID添加到产品版本SKU字段中。 自定义CSS我隐藏了SKU字段,并编辑了子主题woocommerce / single-product.php。我添加了一些PHP来检索自定义字段。

$product = wc_get_product($post->ID);
$pv = new WC_Product_Variable($product->get_id());
$variations = $pv->get_available_variations();  
$custom_fields=[];
if(!empty($variations)){
    foreach($variations as $variation){
        $vid = $variation['variation_id'];
        $sku = $variation['sku'];
        if($vid && $sku){
            $fields = get_fields($sku);
            if($fields){
                $custom_fields[$vid] = $fields;
            }
        }
    }
}

之后,我将自定义字段按版本ID索引