php 从Stripe信用卡字段中删除type =“tel”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从Stripe信用卡字段中删除type =“tel”相关的知识,希望对你有一定的参考价值。

<?php 

// the code below goes in your functions.php file

function my_custom_pos_templates($templates){
  if(isset($templates['pos']['checkout']['gateways']['stripe'])) {
    $templates['pos']['checkout']['gateways']['stripe'] = str_replace('type="tel"','',$templates['pos']['checkout']['gateways']['stripe']);
  }
  return $templates;
}
  
add_filter('woocommerce_pos_templates', 'my_custom_pos_templates');

以上是关于php 从Stripe信用卡字段中删除type =“tel”的主要内容,如果未能解决你的问题,请参考以下文章

Omnipay-Stripe 将信用卡详细信息从表单存储到数据库

条纹:更改信用卡号码?

从 Firebase Cloud Function 连接到 Stripe 时出错

更改信用卡信息(条纹)

Chrome 如何检测信用卡字段?

如何将光标聚焦在条纹输入元素上