makes ordering template for customers js free

This commit is contained in:
kaizushi 2022-07-14 16:29:22 +00:00 committed by SerHack
parent d3bebc45bf
commit 9ba2b640f7

View File

@ -1,6 +1,6 @@
<section class="woocommerce-order-details"> <section class="woocommerce-order-details">
<h2 class="woocommerce-order-details__title"><?php echo $method_title ?></h2> <h2 class="woocommerce-order-details__title"><?php echo $method_title ?></h2>
<noscript><h1>You must enable javascript in order to confirm your order</h1></noscript> <noscript><p>Javascript is disabled and some interactive features will not work!</noscript>
<strong id="monero_payment_messages"> <strong id="monero_payment_messages">
@ -22,7 +22,7 @@
<li> <li>
Pay to: Pay to:
<strong class="monero_details_row"> <strong class="monero_details_row">
<span class="monero_details_main" id="monero_integrated_address"></span> <span class="monero_details_main" id="monero_integrated_address"><noscript><?php echo $details['integrated_address']; ?></noscript></span>
<span class="monero_details_right button-row"> <span class="monero_details_right button-row">
<?php if($show_qr): ?> <?php if($show_qr): ?>
<button href="#" class="button" title="Show QR Code" onclick="monero_showQR()"> <button href="#" class="button" title="Show QR Code" onclick="monero_showQR()">
@ -40,7 +40,7 @@
Total due: Total due:
<strong class="monero_details_row"> <strong class="monero_details_row">
<span class="monero_details_main"> <span class="monero_details_main">
<span id="monero_total_due"></span> XMR <span id="monero_total_due"></span><noscript><?php echo $details['amount_due_formatted']; ?></noscript> XMR
</span> </span>
<span class="monero_details_right button-row"> <span class="monero_details_right button-row">
<button href="#" class="button clipboard" title="Copy Amount" <button href="#" class="button clipboard" title="Copy Amount"
@ -53,17 +53,17 @@
<li style="display:none"> <li style="display:none">
Total order amount: Total order amount:
<strong> <strong>
<span id="monero_total_amount"></span> XMR <span id="monero_total_amount"></span><noscript><?php echo $details["amount_total_formatted"]; ?></noscript> XMR
</strong> </strong>
</li> </li>
<li> <li>
Total paid: Total paid:
<strong> <strong>
<span id="monero_total_paid"></span> XMR <span id="monero_total_paid"></span><noscript><?php echo $details["amount_paid_formatted"]; ?></noscript> XMR
</strong> </strong>
</li> </li>
<li> <li>
Exchange rate:<strong id="monero_exchange_rate"></strong> Exchange rate:<strong id="monero_exchange_rate"><noscript>1 XMR = <?php echo $details["rate_formatted"]; ?></noscript></strong>
</li> </li>
</ul> </ul>