doukang5966907 2017-03-01 08:55
浏览 19
已采纳

WooCommerce - 如何在电子邮件中将送货地址更改为N / A?

WooCommerce provides various hooks and action to change the predefined templates. But i need to hide the shipping address from order emails and display N/A. I have created a custom shipping method using plugin. Using that plugin i have to changed the address. Any help will be appreciated.

enter image description here

  • 写回答

1条回答 默认 最新

  • dongliao1949 2017-03-01 12:01
    关注

    Finally, i found a solution :

    function myplugin_plugin_path() {
            return untrailingslashit( plugin_dir_path( __FILE__ ) );
        }
    
        add_filter( 'woocommerce_locate_template', 'myplugin_woocommerce_locate_template', 10, 3 );
    
    
        function myplugin_woocommerce_locate_template( $template, $template_name, $template_path ) {
    
          global $woocommerce;
          $_template = $template;
    
          if ( ! $template_path ) $template_path = $woocommerce->template_url;
                $plugin_path  = myplugin_plugin_path() . '/woocommerce/';
    
          $template = locate_template(  array(
                                        $template_path . $template_name,
                                        $template_name));
    
          // Modification: Get the template from this plugin, if it exists
          if ( ! $template && file_exists( $plugin_path . $template_name ) )
            $template = $plugin_path . $template_name;
    
          // Use default template
    
          if ( ! $template )
            $template = $_template;
          return $template;
    
        }
    

    The normal WooCommerce template loader searches the following locations in order:

    1. your theme / template path / template name
    2. your theme / template name
    3. your plugin / woo-commerce / template name
    4. default path / template name

    Reference Link : https://www.skyverge.com/blog/override-woocommerce-template-file-within-a-plugin/

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 任务A:大数据平台搭建(容器环境)怎么做呢?
  • ¥15 r语言神经网络自变量重要性分析
  • ¥15 基于双目测规则物体尺寸
  • ¥15 wegame打不开英雄联盟
  • ¥15 公司的电脑,win10系统自带远程协助,访问家里个人电脑,提示出现内部错误,各种常规的设置都已经尝试,感觉公司对此功能进行了限制(我们是集团公司)
  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计