为WooCommerce中的产品添加自定义设置标签,该标签可显示iframe [英] Add custom settings tab for products in WooCommerce which allows to display an iframe

查看:86
本文介绍了为WooCommerce中的产品添加自定义设置标签,该标签可显示iframe的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在创建一个插件,它将在woocommerce中改变画廊的外观.也就是说,将打开iframe而不是图库.这适用于所有产品.

I am creating a plugin that will change the look of the gallery in woocommerce. That is, instead of the gallery, an iframe will open. This works for all products.

add_filter( 'woocommerce_single_product_image_thumbnail_html', 'product_image');

function product_image(){
    $product = wc_get_product();
    $product_id = $product->get_id();
    $threedLink = 'http://sameurl/' .$product_id ;
    $content .= '<iframe src='.$threedLink.'  width="99%" height="300px"></iframe>';
    return $content;

}

但是我需要这不仅适用于所有产品,而且适用于所选产品.也就是说,在产品的整个负载中,您需要创建一个对勾,管理员必须同意在其中显示iframe.我在产品加载面板中创建了一个标签页

But I need this to work not for all products, but for the chosen ones. That is, in the entire load of the product, you need to create a checkmark, where the administrator must agree to show the iframe. I created a tab in the product loading panel

function wk_custom_product_tab( $default_tabs ) {
    $default_tabs['custom_tab'] = array(
        'label'   =>  __( 'Custom Tab', 'domain' ),
        'target'  =>  'wk_custom_tab_data',
        'priority' => 60,
        'class'   => array()
    );
    return $default_tabs;
}

add_filter( 'woocommerce_product_data_tabs', 'wk_custom_product_tab', 10, 1 );

add_action( 'woocommerce_product_data_panels', 'wk_custom_tab_data' );

function wk_custom_tab_data() {
   echo '<div id="wk_custom_tab_data" class="panel woocommerce_options_panel">ddddd</div>';
}

如何添加对勾标记而不是ddddd并将其与插件下载连接?

how can I add a checkmark instead of ddddd and connect it with the plugin download?

推荐答案

  • 添加自定义产品标签
  • 将内容添加到产品"标签(复选框)
  • 保存复选框
  • 获取值,是"或否",如果是,则显示iframe
  • /**
     * Add custom product setting tab.
     */
    function filter_woocommerce_product_data_tabs( $default_tabs ) {
        $default_tabs['custom_tab'] = array(
            'label'   =>  __( 'Custom Tab', 'domain' ),
            'target'  =>  'wk_custom_tab_data',
            'priority' => 60,
            'class'   => array()
        );
        return $default_tabs;
    }
    add_filter( 'woocommerce_product_data_tabs', 'filter_woocommerce_product_data_tabs', 10, 1 );
    
    /**
     * Contents custom product setting tab.
     */
    function action_woocommerce_product_data_panels() {
        global $post;
    
        // Note the 'id' attribute needs to match the 'target' parameter set above
        echo '<div id="wk_custom_tab_data" class="panel woocommerce_options_panel">';
    
        // Add checkbox
        woocommerce_wp_checkbox( array(
            'id'        => '_allow_iframe',
            'label'     => __( 'Allow iFrame', 'woocommerce' ),
        ) );
    
        echo '</div>';
    }
    add_action( 'woocommerce_product_data_panels', 'action_woocommerce_product_data_panels', 10, 0 );
    
    /**
     * Save the checkbox.
     */
    function action_woocommerce_admin_process_product_object( $product ) {
        // Isset, yes or no
        $allow_iframe = isset( $_POST['_allow_iframe'] ) ? 'yes' : 'no';
    
        // Update meta
        $product->update_meta_data( '_allow_iframe', $allow_iframe );
    }
    add_action( 'woocommerce_admin_process_product_object', 'action_woocommerce_admin_process_product_object', 10, 1 );
    
    /**
     * Display iframe if checkbox = 'yes'
     */
    function filter_woocommerce_single_product_image_thumbnail_html( $html, $post_thumbnail_id ) {
        // Get the global product object
        global $product;
        
        // Is a WC product
        if ( is_a( $product, 'WC_Product' ) ) {
            // Get meta
            $value = $product->get_meta( '_allow_iframe' );
    
            // value = 'yes'
            if ( $value == 'yes' ) {
                // Get product id
                $product_id = $product->get_id();
                
                $threed_link = 'http://myurl/' . $product_id;
                $html .= '<iframe src=' . $threed_link . ' width="99%" height="300px"></iframe>';   
            }
        }
    
        return $html;
    }
    add_filter( 'woocommerce_single_product_image_thumbnail_html', 'filter_woocommerce_single_product_image_thumbnail_html', 10, 2 );
    

    这篇关于为WooCommerce中的产品添加自定义设置标签,该标签可显示iframe的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆