1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

fix code, version

This commit is contained in:
Ivan Chaplygin 2023-03-03 16:08:33 +03:00
parent dc75f0be45
commit 05595c49d0
3 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,5 @@
## 2023-03-02 4.5.5
* fix display payment methods
* Fix display payment methods
## 2022-12-26 4.5.3
* Fix bug with products tax

View file

@ -282,8 +282,9 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
foreach ($wc_payment->get_available_payment_gateways() as $payment) {
$title = empty($payment->method_title) ? $payment->id : $payment->method_title;
$description = empty($payment->method_description) ? $payment->description :
$payment->method_description;
$description = empty($payment->method_description)
? $payment->description
: $payment->method_description;
$this->form_fields[$payment->id] = [
'css' => 'min-width:350px;',

View file

@ -45,6 +45,7 @@ class WC_Retailcrm_Abstracts_Settings_Test extends WC_Retailcrm_Test_Case_Helpe
}
}
public function dataProviderAssistant()
{
return array(