运输方式选择woocommerce后显示更多送货选项

时间:2016-11-08 16:09:09

标签: wordpress woocommerce hook-woocommerce

我的送货方式名为" Pickup From shop"在woocommerce。我希望用户在选择送货方式时显示更多字段。

例如,当用户选择我的送货"从商店取货"时,我想显示商店列表和一个文本框以输入日期。

我目前使用修改审核模板,这是正确的方法吗?如果没有请建议。感谢

add_action( 'woocommerce_locate_template',array($this, 'wp_pkpo_templates'), 20, 5 );




public function wp_pkpo_templates($template, $template_name, $template_path) {
        global $product;


        if (strstr($template, 'review-order.php')) {
            //Look within passed path within the theme - this is priority

            $template = locate_template(
                    array(
                        WPPKPO_PLUGIN_DIR . '/templates/checkout/review-order.php',
                        $template_name
                    )
            );

            //Get default template

            if (!$template) {


                $template = WPPKPO_PLUGIN_DIR . '/templates/frontend/checkout-map-section.php';
            }
        }

        return $template;
    }

0 个答案:

没有答案
相关问题