在woocomerce变量订阅产品

时间:2020-02-04 22:16:17

标签: woocommerce hook-woocommerce woocommerce-subscriptions

是他们的插件或代码,我可以添加它们以向woocomerce变量订阅产品中的自定义产品属性添加描述字段。

我知道如何将其添加到变体形式中,但是找不到任何地方可以挂入管理属性形式。

如何为每个属性添加描述字段?

Description field under values field in attribiutes admin

更新 我已经在主题function.php中添加了以下内容,这在渲染字段方面使其更加接近。

add_action( 'woocommerce_after_product_attribute_settings', 'mytheme_woo_add_custom_fields' );
function mytheme_woo_add_custom_fields() {
global $woocommerce, $post;

echo '<div class="options_group">';
// Textarea
woocommerce_wp_textarea_input(
    array(
        'id'          => 'decsription_textarea',
        'label'       => __( 'Description', 'woocommerce' ),
        'placeholder' => '',
        'desc_tip'    => true,
        'description' => __( "Here's some really helpful tooltip text.", "woocommerce" )
    )
 );

我现在无法访问用于保存自定义字段的钩子。

我尝试如下使用“ wp_ajax_woocommerce_save_attributes”钩子,但是我的函数在保存属性时不会触发。

add_action('wp_ajax_woocommerce_save_attributes', 'mytheme_woo_save_attributes', 0);
 function mytheme_woo_save_attributes() {
    error_log('test save');     
}

最好使用哪种钩子和方法?

0 个答案:

没有答案