Skip to content

magento man

Checkout button is not displaying on the cart page and quantity is not updating on the cart page in Magento1.8 based website

I am using the Magento 1.8 version and am facing a sudden critical issue while checking out my LIVE website. Problem: : The “Checkout” button on the cart page is not showing, and any order placement-related activity shows the below… Read More »Checkout button is not displaying on the cart page and quantity is not updating on the cart page in Magento1.8 based website

Default Billing country showing in Magento 2 checkout

When I load the checkout I find country name in billing address already. This is Magento 2 default code which render this in file Module_Checkouttemplatebilling-addressdetails.html <text args=”getCountryName(currentBillingAddress().countryId)”></text><br> How to stop showing on page load.

Magento2.4.6: setTimeout() doesn’t work on server on checkout page but its working on local checkout page, whats the reason?

Here is the code <script> require([ “jquery” ], function($) { ‘use strict’; $(document).ready(function () { setTimeout( function(){ let telephone = $(‘input[name=”telephone”]’); telephone.keypress(function() { console.log(“Formatting phone number with keypress”); telephone.attr(‘maxLength’, ’13’); telephone.attr(‘minLength’, ’13’); telephone.addClass(‘validate-phone-13’); telephone.attr(‘type’,’tel’); let x = $(this).val(); x =… Read More »Magento2.4.6: setTimeout() doesn’t work on server on checkout page but its working on local checkout page, whats the reason?