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

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?