Styling additional info for BLIK payment method
-
Hi!
I am using your plugin for the payment method used in Poland. It is BLIK (stripe_blik).
Using the below snippet I styled a label for BLIK payment without any problem.
add_filter('wc_stripe_get_element_options', function($options, $gateway){
if( $gateway->id === 'stripe_blik'){
$options['appearance']['rules'] = [
'.Label' => [
'fontWeight' => '700',
'marginBottom' => '12px'
]
];
}
return $options;
}, 10, 2);I do not have any idea how to style (change font-weight) the additional description (“Po z?o?eniu zamówienia autoryzuj p?atno?? w aplikacji bankowo?ci mobilnej”). In Dev Tools it is:
regards,
Grzegorz
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.