Skip to content

Commit

Permalink
Fix tasso zero disabilitato
Browse files Browse the repository at this point in the history
  • Loading branch information
salvatore-disavio committed Aug 2, 2022
1 parent ccbd00f commit 3d13a1f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ Per maggiori info e vantaggi per gli e-commerce [visita il nostro sito](https://

== Changelog ==

= 5.6.4 =
= 5.6.5 =
* Il plugin terrà traccia dei settings precedentemente inseriti dopo ogni aggiornamento.
* ATTENZIONE! Il plugin disabiliterà in automatico il tasso zero, si prega di abilitarlo nuovamente se necessario.
* Minor Fix.

= 5.6.3 =
Expand Down
3 changes: 2 additions & 1 deletion src/readme.txte
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ Per maggiori info e vantaggi per gli e-commerce [visita il nostro sito](https://

== Changelog ==

= 5.6.4 =
= 5.6.5 =
* Il plugin terrà traccia dei settings precedentemente inseriti dopo ogni aggiornamento.
* ATTENZIONE! Il plugin disabiliterà in automatico il tasso zero, si prega di abilitarlo nuovamente se necessario.
* Minor Fix.

= 5.6.3 =
Expand Down
8 changes: 5 additions & 3 deletions src/soisy-woocommerce-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ public function __construct()
if ( ! isset( $this->settings[ $setting ] ) ) {
$this->settings[ $setting ] = $value;
}

if ( ! isset( $this->settings['reset_zero'] ) ) {
$this->settings['soisy_zero'] = 0;
}
}

$this->init_form_fields();
Expand Down Expand Up @@ -269,8 +271,8 @@ public function tax_this_price( $product, $price ) {
}

public function zeroInterest ($amount = 0) {
$soisy = get_option( 'woocommerce_soisy_settings' );
$zero = isset( $soisy['soisy_zero'] ) ? $soisy['soisy_zero'] : false;
//$soisy = get_option( 'woocommerce_soisy_settings' );
$zero = isset( $this->settings['soisy_zero'] ) ? $this->settings['soisy_zero'] : false;

return apply_filters( 'soisy_zero', $zero, $amount );
}
Expand Down

0 comments on commit 3d13a1f

Please sign in to comment.