You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
For the payment method CC, it is possible to override the default title shown on in the payment step on website or store view level utilizing the config path payment/adyen_cc/title.
For alternative payment methods this only works on default scope but not when set for on website or store view level. As payment methods may be translated for different countries, configurations on this more specific levels also should be taken into account correctly.
To Reproduce
Steps to reproduce the behavior:
Configure e.g. "Klarna" payments to be shown in your store. By default it will be shown as Klarna
In the database (as this config is not available via backend) add following: INSERT INTO core_config_data SET scope="default", scope_id=0, path="payment/adyen_klarna/title", value="Test title";
Clear the config cache
Go to checkout
The title "Test title" is shown for the payment method
Adjust the config value to store view level:
`UPDATE core_config_data SET scope="stores", scope_id=<your_store_id_here> WHERE path="payment/adyen_klarna/title";
Repeat steps 4 and 5
The default title "Klarna" is shown for the payment method
Expected behavior
When a title for an alternative payment method is configured on website or store view level, this configuration is taken into account correctly, as it is already done for the CC payment method.
Magento version
2.4.6-p8
Plugin version
9.12.2
Additional context
The title for CC payment methods is set in \Adyen\Payment\Model\Ui\AdyenCcConfigProvider::getConfig
No equivalent could be found for alternative payment (PM) methods
The text was updated successfully, but these errors were encountered:
Thank you for creating this issue. It's a known issue and we already have an internal investigation about this issue. I am linking these two together and you will be informed once we make a decision.
Best Regards,
Can
candemiralp
changed the title
Alternative Payment Methods | Payment method title is not translatable on website or store view level
[ECP-9564] Alternative Payment Methods | Payment method title is not translatable on website or store view level
Jan 20, 2025
Thanks a lot for your timely feedback. Do you have a rough estimation on when you could provide a feedback on the decision? Our customer is planning to roll out new payment methods in the very near future and having the titles not translated is a show stopper here.
As the rollout is planned in multiple stores with different languages simultaneously, a workaround be just setting the title in DEFAULT scope doesn't work ufortunately.
Describe the bug
For the payment method CC, it is possible to override the default title shown on in the payment step on website or store view level utilizing the config path
payment/adyen_cc/title
.For alternative payment methods this only works on
default
scope but not when set for on website or store view level. As payment methods may be translated for different countries, configurations on this more specific levels also should be taken into account correctly.To Reproduce
Steps to reproduce the behavior:
Klarna
INSERT INTO
core_config_dataSET scope="default", scope_id=0, path="payment/adyen_klarna/title", value="Test title";
`UPDATE core_config_data SET scope="stores", scope_id=<your_store_id_here> WHERE path="payment/adyen_klarna/title";
Expected behavior
When a
title
for an alternative payment method is configured on website or store view level, this configuration is taken into account correctly, as it is already done for the CC payment method.Magento version
2.4.6-p8
Plugin version
9.12.2
Additional context
title
for CC payment methods is set in\Adyen\Payment\Model\Ui\AdyenCcConfigProvider::getConfig
The text was updated successfully, but these errors were encountered: