Skip to content

Commit

Permalink
Merge pull request #5 from paynl/feature/PLUG-1789
Browse files Browse the repository at this point in the history
PLUG-1789 - Fix Apple Pay not showing instructions on frontend
  • Loading branch information
woutse authored Mar 7, 2023
2 parents 754854b + 0cef031 commit 621c5e6
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,12 @@ function isApplePayAvailable()
if (isApplePayAvailable()) {
$('dt_method_pay_payment_applepay').show();
}
</script>
</script>

<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none;">
<?php
if (!empty($instructions)) {
echo "<li>" . nl2br($instructions) . "</li>";
}
?>
</ul>

0 comments on commit 621c5e6

Please sign in to comment.