Loader is stuck on Onepage CheckoutOnepage checkout, or not Onepage checkoutOnepage checkout returns 500onepage checkout js errorOnePage CheckOut Magento2Magento 2 - Stuck Checkout loader and Javascript errorCheckout loader stuckOnepage checkout stuck on billing sectionImpossible to change one-page checkout step to payment on magento 1.9.3.6Magento 2: Onepage CheckoutHow to initialize a block loader on an element which is being loaded by knockout.js in Magento 2?

Size of electromagnet needed to replicate Earth's magnetic field

What does ゆーか mean?

A ​Note ​on ​N!

Does Gita support doctrine of eternal samsara?

As an international instructor, should I openly talk about my accent?

Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?

Pre-plastic human skin alternative

How do I check if a string is entirely made of the same substring?

What makes accurate emulation of old systems a difficult task?

How to limit Drive Letters Windows assigns to new removable USB drives

How much cash can I safely carry into the USA and avoid civil forfeiture?

Is there a way to generate a list of distinct numbers such that no two subsets ever have an equal sum?

What's the polite way to say "I need to urinate"?

Does a large simulator bay have standard public address announcements?

How to have a sharp product image?

How to write a column outside the braces in a matrix?

What is the philosophical significance of speech acts/implicature?

A strange hotel

"You've called the wrong number" or "You called the wrong number"

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

Aliens crash on Earth and go into stasis to wait for technology to fix their ship

Providing evidence of Consent of Parents for Marriage by minor in England in early 1800s?

Was there a Viking Exchange as well as a Columbian one?

How could Tony Stark make this in Endgame?



Loader is stuck on Onepage Checkout


Onepage checkout, or not Onepage checkoutOnepage checkout returns 500onepage checkout js errorOnePage CheckOut Magento2Magento 2 - Stuck Checkout loader and Javascript errorCheckout loader stuckOnepage checkout stuck on billing sectionImpossible to change one-page checkout step to payment on magento 1.9.3.6Magento 2: Onepage CheckoutHow to initialize a block loader on an element which is being loaded by knockout.js in Magento 2?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Basically the loader inside this page does not disappear after the page is loaded, some have fixed this by fixing console errors (I have none) other by fixing their onepage.phtml (Looks good to me) with nothing else to go off i'm hoping to find some kind of solution here.



What the loader looks like before its fully loaded, looks normal.
What the loader looks like beforeWhat the loader looks life after, now missing its data-mage-init
enter image description here



Inside appdesignfrontendpcnametagpcnametag_canadaMagento_Checkouttemplatesonepage.phtml



<script>
require(['jquery'],function($)
$(document).ready(function()
ga('send','event','Checkout','Step 1 - Checkout Method', nonInteraction: true);
);
);
</script>
<div id="checkout" data-bind="scope:'checkout'" class="checkout-container">
<div id="checkout-loader" data-role="checkout-loader" class="loading-mask" data-mage-init='"checkoutLoader": '>
<div class="loader">
<img src="<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>"
alt="<?= /* @escapeNotVerified */ __('Loading...') ?>"
style="position: absolute;">
</div>
</div>
<!-- ko template: getTemplate() --><!-- /ko -->
<script type="text/x-magento-init">

"#checkout":
"Magento_Ui/js/core/app": <?= /* @escapeNotVerified */ $block->getJsLayout() ?>


</script>
<script>
window.checkoutConfig = <?= /* @escapeNotVerified */ $block->getSerializedCheckoutConfig() ?>;
// Create aliases for customer.js model from customer module
window.isCustomerLoggedIn = window.checkoutConfig.isCustomerLoggedIn;
window.customerData = window.checkoutConfig.customerData;
</script>
<script>
require([
'mage/url',
'Magento_Ui/js/block-loader'
], function(url, blockLoader)
blockLoader("<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>");
return url.setBaseUrl('<?= /* @escapeNotVerified */ $block->getBaseUrl() ?>');
)
</script>
</div>


No errors in the console, everything in network tab coming back as 200
enter image description here










share|improve this question

















  • 1





    check in error report sometimes it is not displayed on the frontend

    – magefms
    Apr 23 at 21:17

















1















Basically the loader inside this page does not disappear after the page is loaded, some have fixed this by fixing console errors (I have none) other by fixing their onepage.phtml (Looks good to me) with nothing else to go off i'm hoping to find some kind of solution here.



What the loader looks like before its fully loaded, looks normal.
What the loader looks like beforeWhat the loader looks life after, now missing its data-mage-init
enter image description here



Inside appdesignfrontendpcnametagpcnametag_canadaMagento_Checkouttemplatesonepage.phtml



<script>
require(['jquery'],function($)
$(document).ready(function()
ga('send','event','Checkout','Step 1 - Checkout Method', nonInteraction: true);
);
);
</script>
<div id="checkout" data-bind="scope:'checkout'" class="checkout-container">
<div id="checkout-loader" data-role="checkout-loader" class="loading-mask" data-mage-init='"checkoutLoader": '>
<div class="loader">
<img src="<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>"
alt="<?= /* @escapeNotVerified */ __('Loading...') ?>"
style="position: absolute;">
</div>
</div>
<!-- ko template: getTemplate() --><!-- /ko -->
<script type="text/x-magento-init">

"#checkout":
"Magento_Ui/js/core/app": <?= /* @escapeNotVerified */ $block->getJsLayout() ?>


</script>
<script>
window.checkoutConfig = <?= /* @escapeNotVerified */ $block->getSerializedCheckoutConfig() ?>;
// Create aliases for customer.js model from customer module
window.isCustomerLoggedIn = window.checkoutConfig.isCustomerLoggedIn;
window.customerData = window.checkoutConfig.customerData;
</script>
<script>
require([
'mage/url',
'Magento_Ui/js/block-loader'
], function(url, blockLoader)
blockLoader("<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>");
return url.setBaseUrl('<?= /* @escapeNotVerified */ $block->getBaseUrl() ?>');
)
</script>
</div>


No errors in the console, everything in network tab coming back as 200
enter image description here










share|improve this question

















  • 1





    check in error report sometimes it is not displayed on the frontend

    – magefms
    Apr 23 at 21:17













1












1








1








Basically the loader inside this page does not disappear after the page is loaded, some have fixed this by fixing console errors (I have none) other by fixing their onepage.phtml (Looks good to me) with nothing else to go off i'm hoping to find some kind of solution here.



What the loader looks like before its fully loaded, looks normal.
What the loader looks like beforeWhat the loader looks life after, now missing its data-mage-init
enter image description here



Inside appdesignfrontendpcnametagpcnametag_canadaMagento_Checkouttemplatesonepage.phtml



<script>
require(['jquery'],function($)
$(document).ready(function()
ga('send','event','Checkout','Step 1 - Checkout Method', nonInteraction: true);
);
);
</script>
<div id="checkout" data-bind="scope:'checkout'" class="checkout-container">
<div id="checkout-loader" data-role="checkout-loader" class="loading-mask" data-mage-init='"checkoutLoader": '>
<div class="loader">
<img src="<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>"
alt="<?= /* @escapeNotVerified */ __('Loading...') ?>"
style="position: absolute;">
</div>
</div>
<!-- ko template: getTemplate() --><!-- /ko -->
<script type="text/x-magento-init">

"#checkout":
"Magento_Ui/js/core/app": <?= /* @escapeNotVerified */ $block->getJsLayout() ?>


</script>
<script>
window.checkoutConfig = <?= /* @escapeNotVerified */ $block->getSerializedCheckoutConfig() ?>;
// Create aliases for customer.js model from customer module
window.isCustomerLoggedIn = window.checkoutConfig.isCustomerLoggedIn;
window.customerData = window.checkoutConfig.customerData;
</script>
<script>
require([
'mage/url',
'Magento_Ui/js/block-loader'
], function(url, blockLoader)
blockLoader("<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>");
return url.setBaseUrl('<?= /* @escapeNotVerified */ $block->getBaseUrl() ?>');
)
</script>
</div>


No errors in the console, everything in network tab coming back as 200
enter image description here










share|improve this question














Basically the loader inside this page does not disappear after the page is loaded, some have fixed this by fixing console errors (I have none) other by fixing their onepage.phtml (Looks good to me) with nothing else to go off i'm hoping to find some kind of solution here.



What the loader looks like before its fully loaded, looks normal.
What the loader looks like beforeWhat the loader looks life after, now missing its data-mage-init
enter image description here



Inside appdesignfrontendpcnametagpcnametag_canadaMagento_Checkouttemplatesonepage.phtml



<script>
require(['jquery'],function($)
$(document).ready(function()
ga('send','event','Checkout','Step 1 - Checkout Method', nonInteraction: true);
);
);
</script>
<div id="checkout" data-bind="scope:'checkout'" class="checkout-container">
<div id="checkout-loader" data-role="checkout-loader" class="loading-mask" data-mage-init='"checkoutLoader": '>
<div class="loader">
<img src="<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>"
alt="<?= /* @escapeNotVerified */ __('Loading...') ?>"
style="position: absolute;">
</div>
</div>
<!-- ko template: getTemplate() --><!-- /ko -->
<script type="text/x-magento-init">

"#checkout":
"Magento_Ui/js/core/app": <?= /* @escapeNotVerified */ $block->getJsLayout() ?>


</script>
<script>
window.checkoutConfig = <?= /* @escapeNotVerified */ $block->getSerializedCheckoutConfig() ?>;
// Create aliases for customer.js model from customer module
window.isCustomerLoggedIn = window.checkoutConfig.isCustomerLoggedIn;
window.customerData = window.checkoutConfig.customerData;
</script>
<script>
require([
'mage/url',
'Magento_Ui/js/block-loader'
], function(url, blockLoader)
blockLoader("<?= /* @escapeNotVerified */ $block->getViewFileUrl('images/loader-1.gif') ?>");
return url.setBaseUrl('<?= /* @escapeNotVerified */ $block->getBaseUrl() ?>');
)
</script>
</div>


No errors in the console, everything in network tab coming back as 200
enter image description here







magento2 onepage-checkout






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 23 at 18:26









Alex DonnellyAlex Donnelly

487




487







  • 1





    check in error report sometimes it is not displayed on the frontend

    – magefms
    Apr 23 at 21:17












  • 1





    check in error report sometimes it is not displayed on the frontend

    – magefms
    Apr 23 at 21:17







1




1





check in error report sometimes it is not displayed on the frontend

– magefms
Apr 23 at 21:17





check in error report sometimes it is not displayed on the frontend

– magefms
Apr 23 at 21:17










0






active

oldest

votes












Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f271141%2floader-is-stuck-on-onepage-checkout%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f271141%2floader-is-stuck-on-onepage-checkout%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

Log in Navigation menu

Invalid response line returned from server: HTTP/2 401 | ErrorPlease Please Help With Error 500 Internal Server Error after upgrading from 1.7 to 1.9Unable to place new customer orders in admin backendMagento - For “Manage Categories” Forbidden You do not have permission to access this documentHTTP ERROR 500 when using require(_once) app/Mage.phpMemcached causing Web Setup Wizard ErrorCould not create an acl object: Invalid XMLAn error occurred on the server. Please try to place the order againInvalid response line returned from server: HTTP/2 200 - message after update to 2.1.7Magento-CE 2.3.0 installation error on XamppMagento 2.2.6- After Migration all default Payment Methods are not working fine