fix code, version
This commit is contained in:
parent
dc75f0be45
commit
05595c49d0
3 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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;',
|
||||
|
|
|
@ -45,6 +45,7 @@ class WC_Retailcrm_Abstracts_Settings_Test extends WC_Retailcrm_Test_Case_Helpe
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
public function dataProviderAssistant()
|
||||
{
|
||||
return array(
|
||||
|
|
Loading…
Add table
Reference in a new issue