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

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

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

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form