Loader is stuck on Onepage Checkout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?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?
When speaking, how do you change your mind mid-sentence?
Is there a verb for listening stealthily?
Deciphering death certificate writing
Is there a way to fake a method response using Mock or Stubs?
Does using the Inspiration rules for character defects encourage My Guy Syndrome?
A journey... into the MIND
What helicopter has the most rotor blades?
Why do owned slices take 16 bytes in rust? (on x64 machine)
Eigenvalues of the Laplacian of the directed De Bruijn graph
What's the difference between using dependency injection with a container and using a service locator?
What's called a person who work as someone who puts products on shelves in stores?
Married in secret, can marital status in passport be changed at a later date?
Will I be more secure with my own router behind my ISP's router?
Where to find documentation for `whois` command options?
The 'gros' functor from schemes into (strictly) locally ringed topoi
Preserving file and folder permissions with rsync
What is the evidence that custom checks in Northern Ireland are going to result in violence?
Is it OK if I do not take the receipt in Germany?
What to do with someone that cheated their way though university and a PhD program?
Translate text contents of an existing file from lower to upper case and copy to a new file
What is the ongoing value of the Kanban board to the developers as opposed to management
Why aren't road bicycle wheels tiny?
Protagonist's race is hidden - should I reveal it?
My admission is revoked after accepting the admission offer
Loader is stuck on Onepage Checkout
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?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;
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 life after, now missing its data-mage-init
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
magento2 onepage-checkout
add a comment |
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 life after, now missing its data-mage-init
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
magento2 onepage-checkout
check in error report sometimes it is not displayed on the frontend
– magefms
50 mins ago
add a comment |
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 life after, now missing its data-mage-init
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
magento2 onepage-checkout
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 life after, now missing its data-mage-init
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
magento2 onepage-checkout
magento2 onepage-checkout
asked 3 hours ago
Alex DonnellyAlex Donnelly
487
487
check in error report sometimes it is not displayed on the frontend
– magefms
50 mins ago
add a comment |
check in error report sometimes it is not displayed on the frontend
– magefms
50 mins ago
check in error report sometimes it is not displayed on the frontend
– magefms
50 mins ago
check in error report sometimes it is not displayed on the frontend
– magefms
50 mins ago
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
check in error report sometimes it is not displayed on the frontend
– magefms
50 mins ago