Skip to content

Commit

Permalink
fix setting validation; fix express button settings; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
netzkollektiv committed Sep 27, 2023
1 parent 733014d commit ad61493
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Frontend/NetzkollektivEasyCredit/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function getLabel()

public function getVersion()
{
return '1.9.1';
return '1.9.2';
}

public function getInfo()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ public function __construct () {
}

public function updateConfiguration() {
if (!$this->crudService) {
return;
}

$container = $this->helper->getContainer();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
{block name="frontend_detail_buy"}
{$smarty.block.parent}

{include file='frontend/plugins/payment/easycredit/express-button.tpl'}
{if $EasyCreditExpressProduct}
{include file='frontend/plugins/payment/easycredit/express-button.tpl'}
{/if}
{/block}

{block name='frontend_detail_data_price_info'}
Expand Down Expand Up @@ -39,7 +41,9 @@
{/block}

{block name="frontend_checkout_cart_deliveryfree"}
{include file='frontend/plugins/payment/easycredit/express-button.tpl'}
{if $EasyCreditExpressCart}
{include file='frontend/plugins/payment/easycredit/express-button.tpl'}
{/if}

{$smarty.block.parent}
{/block}
Expand Down

0 comments on commit ad61493

Please sign in to comment.