Код плагина Wordpress / Woocommerce не отображается - PullRequest
0 голосов
/ 01 декабря 2019

Я хочу добавить несколько пользовательских мета-блоков на страницу продукта Woocommerce. Когда я добавляю этот код в файл wc-meta-boxes-functions.php, он работает, но когда я добавляю его в свой файл плагинов, он ничего не делает. Что я делаю неправильно?

namespace Inc\Base;
use Inc\Base\BaseController;
/**
* 
*/
class WoocommerceController extends BaseController
{

    function register(){
    add_action('woocommerce_product_options_general_product_data', 'woocommerce_product_custom_fields');
// Save Fields
add_action('woocommerce_process_product_meta', 'woocommerce_product_custom_fields_save');
}

// Display Fields

function woocommerce_product_custom_fields()
    {
    global $woocommerce, $post;
    echo '<div class="product_custom_field">';
    // Custom Product Text Field
    woocommerce_wp_text_input(
        array(
            'id' => '_custom_product_text_field',
            'placeholder' => 'Custom Product Text Field',
            'label' => __('Custom Product Text Field', 'woocommerce'),
            'desc_tip' => 'true'
        )
    );
    //Custom Product Number Field
    woocommerce_wp_text_input(
        array(
            'id' => '_custom_product_number_field',
            'placeholder' => 'Custom Product Number Field',
            'label' => __('Custom Product Number Field', 'woocommerce'),
            'type' => 'number',
            'custom_attributes' => array(
                'step' => 'any',
                'min' => '0'
            )
        )
    );
    //Custom Product  Textarea
    woocommerce_wp_textarea_input(
        array(
            'id' => '_custom_product_textarea',
            'placeholder' => 'Custom Product Textarea',
            'label' => __('Custom Product Textarea', 'woocommerce')
        )
    );
    echo '</div>';
}

}

1 Ответ

0 голосов
/ 01 декабря 2019

так что я нашел ответ: вы должны написать add_action('woocommerce_product_options_general_product_data', array($this, 'woocommerce_product_custom_fields') ); Спасибо за ответы!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...