Skip to content

Commit

Permalink
Merge pull request #12 from paynl/STATICIMAGES
Browse files Browse the repository at this point in the history
Changed image urls
  • Loading branch information
woutse authored Feb 5, 2020
2 parents 6ec35fd + a68b119 commit e72a4dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion paynlpaymentmethods/paynlpaymentmethods.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private function getPaymentMethods($cart = null)
'value' => $paymentMethod->id,
],
])
->setLogo('https://www.pay.nl/images/payment_profiles/50x32/' . $paymentMethod->id . '.png');
->setLogo('https://static.pay.nl/payment_profiles/50x32/' . $paymentMethod->id . '.png');
if (isset($paymentMethod->description)) {
$objPaymentMethod->setAdditionalInformation('<p>' . $paymentMethod->description . '</p>');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<switch ng-model="paymentmethod.enabled" class="enabledSwitch green"></switch>
</span>
<span ng-click="toggleSettings(paymentmethod)" class="col-xs-1 clickable">
<img src="https://www.pay.nl/images/payment_profiles/50x50/{literal}{{paymentmethod.id}}{/literal}.png">
<img src="https://static.pay.nl/payment_profiles/50x50/{literal}{{paymentmethod.id}}{/literal}.png">
</span>
<span ng-click="toggleSettings(paymentmethod)" class="col-xs-9 clickable">
<h4 class="list-group-item-heading">{literal}{{paymentmethod.name}}{/literal}</h4>
Expand Down

0 comments on commit e72a4dd

Please sign in to comment.