在Woocommerce单一产品上显示从管理员选择的选定CF7

时间:2018-09-03 12:39:21

标签: php wordpress woocommerce product contact-form-7

对于自定义WooCommerce主题,我正在尝试实现以下目标:

  1. 后端

    • 用户可以选择产品是否可以具有产品查询表
    • 用户可以从下拉菜单的单个产品中选择CF7表单。
  2. 前端

    • 单个产品页面显示标准产品信息,但是如果选中了“产品查询表单”,则单个产品页面会显示一个按钮,显示“产品查询”
    • 单击该按钮时,将显示包含产品属性(尺寸,颜色等)的CF7表单

我要实现的示例。 http://www.blumeta.nl/tuininrichting/houtopslag/cortenstaal-houtopslag-500-x-hoogte-x-380mm

我真的不知道该如何处理。谁能帮我解决这个问题。

感谢所有帮助。

1 个答案:

答案 0 :(得分:1)

下面的代码将显示在:

1)后端单个产品设置,位于“高级”标签下,其中包含具有不同CF7表单的选择字段

enter image description here

您必须在第一个功能中设置CF7表单的简码:

// Select field options: HERE set the CF7 shortcodes and labels in the array
function product_cf7_form_options() {
    $domain = 'woocommerce';

    return array(
        ''                          => __('Choose a form to enable it', $domain ), // Disabled choice
        '[contact-form-7 id="381"]' => __( 'First Form label name (or title)', $domain ),
        '[contact-form-7 id="382"]' => __( 'Second Form label name (or title)', $domain ),
    );
}

// Admin: Add custom field to product "advanced" setting tab
add_filter( 'woocommerce_product_options_advanced', 'add_field_product_options_advanced', 20, 1 );
function add_field_product_options_advanced() {
    $domain = 'woocommerce';

    echo '<div class="option_group">';

    woocommerce_wp_select( array(
        'id'      => '_enquiry_form',
        'label'   => __( 'Display a form (CF7)', $domain ),
        'desc_tip' => true,
        'description' => __( 'This will automatically insert your slider into the single product page', $domain ),
        'options'  => product_cf7_form_options(), // Get the array of options
    ) );

    echo '</div>';
}

// Admin: Save custom field value from product "advanced" setting tab
add_action( 'woocommerce_process_product_meta', 'save_product_custom_field', 20, 1 );
function save_product_custom_field( $post_id ){
    if( isset( $_POST['_enquiry_form'] ) )
        update_post_meta( $post_id, '_enquiry_form', $_POST['_enquiry_form'] );

}

2)前端下面的单个产品页面添加到购物车按钮,已选择的CF7表单

enter image description here

下面的代码将显示一个按钮“产品查询”。如果客户单击该按钮,它将消失,显示所选的联系表7:

// Frontend: Custom button, display the selected product enquiry form
add_action( 'woocommerce_after_add_to_cart_button', 'display_single_product_inquiry_form', 10 );
function display_single_product_inquiry_form(){
    global $product;

    // Get the selected form
    $enquiry_form = $product->get_meta('_enquiry_form');

    // Ouput button and hidden selected form hselected form
    if( ! empty($enquiry_form) ){
        echo '<div id="enquiry-form" style="padding-top:12px;">
        <p><a href="#" class="button">'.__("Product Enquiry", "woocommerce").'</a></p>
        <div style="display:none;">' . do_shortcode( "$enquiry_form" ) . '</div></div>';
    }

    // Jquery
    ?>
    <script type="text/javascript">
    jQuery(function($){
        var a = '#enquiry-form';

        // On click hide button and show form.
        $(a+' a').click(function(e){
            e.preventDefault();
            $(a+' > div').show();
            $(this).hide();
        });
    })
    </script>
    <?php
}

所有代码都放在活动子主题(或活动主题)的function.php文件中。经过测试并可以正常工作。