Home / Archive / MemberPress: Change Stripe Checkout fields to match Dark Mode theme
Duplicate Snippet

Embed Snippet on Your Site

MemberPress: Change Stripe Checkout fields to match Dark Mode theme

Adjust the appearance of Stripe Elements form by changing the theme to 'night' if a user is using a dark theme.

Code Preview
php
<?php
add_filter( 'mepr-stripe-elements-appearance', function( $style ) {
	$style[ 'theme' ] = 'night';
	return $style;
});

Comments

Add a Comment