php [Stripe]使用`wc_stripe_elements_styling`过滤器添加自定义条纹元素样式。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [Stripe]使用`wc_stripe_elements_styling`过滤器添加自定义条纹元素样式。相关的知识,希望对你有一定的参考价值。

// Stripe provides a filter for you to add custom Stripe Elements Styling
// See full documentation from Stripe on what elements are available to be styled here:
// https://stripe.com/docs/stripe-js/reference#element-options

add_filter( 'wc_stripe_elements_styling', 'marce_add_stripe_elements_styles' );
function marce_add_stripe_elements_styles($array) {
	$array = array(
		'base' => array( 
			'color' 	=> '#bada55',
			'fontFamily' 	=> 'Comic Sans',
			'fontSize' 	=> '30px'
		),
		'invalid' => array(
			'color'		=> '#0099e5'
		)
	);
	return $array;
}

以上是关于php [Stripe]使用`wc_stripe_elements_styling`过滤器添加自定义条纹元素样式。的主要内容,如果未能解决你的问题,请参考以下文章

php [Stripe]使用`wc_stripe_elements_styling`过滤器添加自定义条纹元素样式。

CodeIgniter - 如何在项目中加载 stripe-php 库?

使用javascript和php单击按钮时如何创建条带产品

如何使用Stripe和PHP(用于订阅)增加付款次数

PHP - 为交易生成令牌

如何在 PHP Codeception 中模拟 Stripe 类