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;
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
1
check in error report sometimes it is not displayed on the frontend
– magefms
Apr 23 at 21:17
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 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
add a comment |
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
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
1
check in error report sometimes it is not displayed on the frontend
– magefms
Apr 23 at 21:17