![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-msrp/view/frontend/templates/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <?php /** @var \Magento\Msrp\Block\Popup $block */ ?> <?php if ($block->isEnabled()) : ?> <script data-role="msrp-popup-template" type="text/x-magento-template"> <div id="map-popup-click-for-price" class="map-popup"> <div class="popup-header"> <strong class="title" id="map-popup-heading-price"></strong> </div> <div class="popup-content"> <div class="map-info-price" id="map-popup-content"> <div class="price-box"> <div class="map-msrp" id="map-popup-msrp-box"> <span class="label"><?= $block->escapeHtml(__('Price')) ?></span> <span class="old-price map-old-price" id="map-popup-msrp"> <span class="price"></span> </span> </div> <div class="map-price" id="map-popup-price-box"> <span class="label"><?= $block->escapeHtml(__('Actual Price')) ?></span> <span id="map-popup-price" class="actual-price"></span> </div> </div> <form action="" method="POST" class="map-form-addtocart"> <input type="hidden" name="product" class="product_id" value="" /> <button type="button" title="<?= $block->escapeHtml(__('Add to Cart')) ?>" class="action tocart primary"> <span><?= $block->escapeHtml(__('Add to Cart')) ?></span> </button> <div class="additional-addtocart-box"> <?= $block->getChildHtml() ?> </div> </form> </div> <div class="map-text" id="map-popup-text"> <?= /* @noEscape */ $block->getExplanationMessage() ?> </div> </div> </div> </script> <script data-role="msrp-info-template" type="text/x-magento-template"> <div id="map-popup-what-this" class="map-popup"> <div class="popup-header"> <strong class="title" id="map-popup-heading-what-this"></strong> </div> <div class="popup-content"> <div class="map-help-text" id="map-popup-text-what-this"> <?= /* @noEscape */ $block->getExplanationMessageWhatsThis() ?> </div> </div> </div> </script> <?php endif; ?>