Skip to content

Commit

Permalink
Add support for PHP 8.3 and Magento 2.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
srenon committed May 1, 2024
1 parent e37b0f9 commit eef8841
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"free shipping"
],
"type": "magento2-module",
"version": "1.8.1",
"version": "1.8.2",
"license": [
"proprietary"
],
Expand All @@ -36,7 +36,7 @@
}
],
"require": {
"php": "~7.4.0|~8.1.0|~8.2.0",
"php": "~8.1.0|~8.2.0|~8.3.0",
"magento/module-backend": "102.0.*",
"magento/framework": "103.0.*",
"magepal/magento2-core": ">=1.1.10"
Expand Down
4 changes: 2 additions & 2 deletions etc/adminhtml/system.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<comment>
<![CDATA[
<div class="magepal-info">
Copyright © 2023 <a href="https://www.magepal.com/magento2/extensions.html?utm_source=cataloglazyload&utm_medium=admin" target="_blank">MagePal, LLC</a>
Copyright © 2024 <a href="https://www.magepal.com/magento2/extensions.html?utm_source=cataloglazyload&utm_medium=admin" target="_blank">MagePal, LLC</a>
<a href="https://www.magepal.com/help/docs/magento-lazy-load-images/?utm_source=cataloglazyload&utm_medium=admin#documentation" target="_blank">Documentation</a>
<a href="https://www.magepal.com/help/docs/magento-lazy-load-images/?utm_source=cataloglazyload&utm_medium=admin#support">Support</a>
<a href="https://www.magepal.com/help/docs/magento-lazy-load-images/?utm_source=cataloglazyload&utm_medium=admin#current_version" target="_blank">Latest Version</a>
Expand Down Expand Up @@ -52,7 +52,7 @@
<comment>
<![CDATA[
<div class="magepal-info">
Copyright © 2023 <a href="https://www.magepal.com/magento2/extensions.html?utm_source=custom-shipping&utm_medium=admin" target="_blank">MagePal, LLC</a>
Copyright © 2024 <a href="https://www.magepal.com/magento2/extensions.html?utm_source=custom-shipping&utm_medium=admin" target="_blank">MagePal, LLC</a>
<a href="https://www.magepal.com/help/docs/configure-custom-shipping-methods-magento-2/?utm_source=custom-shipping&utm_medium=admin#documentation" target="_blank">Documentation</a>
<a href="https://www.magepal.com/help/docs/configure-custom-shipping-methods-magento-2/?utm_source=custom-shipping&utm_medium=admin#support">Support</a>
<a href="https://www.magepal.com/help/docs/configure-custom-shipping-methods-magento-2/?utm_source=custom-shipping&utm_medium=admin#current_version" target="_blank">Latest Version</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ $taxHelper = $block->getData('taxHelper');
<?php endforeach; ?>
</select>
<input id="custom-shipment-rate" type="text" style="width:75px; padding:3px;" placeholder="9.99" value="<?php echo $block->getActiveCustomShippingRatePrice() ?>" class="input-text item-price required-entry" />
<button id="custom-shipping-button" type="button" class="scalable "
onclick="order.setShippingMethod(getCustomShippingCost())" ><span><?= __('Set') ?></span></button>

<?= $block->getButtonHtml(__('Set'), 'order.setShippingMethod(getCustomShippingCost())', 'scalable') ?>
</p>

</li>
Expand Down

0 comments on commit eef8841

Please sign in to comment.