Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xlplugins/856f8a5787dddd923872535846d0ead2 to your computer and use it in GitHub Desktop.
Save xlplugins/856f8a5787dddd923872535846d0ead2 to your computer and use it in GitHub Desktop.
Text align center for klarna paylater message
add_filter( 'fkwcs_paylater_localized_data', function ( $data ) {
$data['appearance']->rules = [
'.PaymentMethodMessaging' => [
'textAlign' => 'center',
]
];
return $data;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment