在WooCommerce产品描述页面中显示比较表属性值和标签

时间:2016-05-17 11:22:42

标签: php wordpress wordpress-plugin woocommerce product

我最近使用Wordpress创建了一个网站,并插入了700个带有属性的产品。

现在我只需要在产品说明标签中显示这些插入的属性。我安装了一个名为show attributes的插件,它只显示产品编辑页面中插入的属性,而不是快速编辑中的属性!
此外,我需要自定义 Yith比较插件php代码并将其插入我的主题的woocommerce产品页面,以显示我需要的确切属性。

以下是 Yith Compare 产品的功能,以显示产品属性:

/**
     * The fields to show in the table
     *
     * @return mixed|void
     * @since 1.0.0
     */
    public function fields() {

        $fields = get_option( 'yith_woocompare_fields', array() );

        foreach ( $fields as $field => $show ) {
            if ( $show ) {
                if ( isset( $this->default_fields[$field] ) ) {
                    $fields[$field] = $this->default_fields[$field];
                }
                else {
                    if ( taxonomy_exists( $field ) ) {
                        $fields[$field] = get_taxonomy( $field )->label;
                    }
                }
            }
            else {
                unset( $fields[$field] );
            }
        }

        return $fields;
    }

0 个答案:

没有答案