Magento 2 Mini-cart doesn't close when click on outside in iPhonesMini Cart Close jQuerymini cart is not working magento 2When I click a Product, it gives me error page. Says it is the mini-cartMagento mini cart doesn't workmini cart not showing itemsMagento 2 Mini Cart Plugin di.xml doesn't pass attribute informationMagento 2, Change On hover instead of 'click' for mini cartClose magento 2 minicart on clickMini cart should open automatically and close after few seconds when product is added in Magento 1Load a jQuery script after fully loading the page
Could IPv6 make NAT / port numbers redundant?
Racetrack designers, assemble!
Is there any Biblical Basis for 400 years of silence between Old and New Testament?
How to detach yourself from a character you're going to kill?
Modern approach to radio buttons
Term for checking piece whose opponent daren't capture it
Why is there a need to modify system call tables in Linux?
What's the most polite way to tell a manager "shut up and let me work"?
Do adult Russians normally hand-write Cyrillic as cursive or as block letters?
Strange math syntax in old basic listing
Select row of data if next row contains zero
Why does the UK have more political parties than the US?
The deliberate use of misleading terminology
Is a hash a zero-knowledge proof?
Future enhancements for the finite element method
Why were the Night's Watch required to be celibate?
Looking for an old image of designing a cpu with plan laid out / being edited on a literal floor
Pros and cons of writing a book review?
Why use water tanks from a retired Space Shuttle?
The qvolume of an integer
How can I offer a test ride while selling a bike?
Humans meet a distant alien species. How do they standardize? - Units of Measure
How do I truncate a csv file?
Applicants clearly not having the skills they advertise
Magento 2 Mini-cart doesn't close when click on outside in iPhones
Mini Cart Close jQuerymini cart is not working magento 2When I click a Product, it gives me error page. Says it is the mini-cartMagento mini cart doesn't workmini cart not showing itemsMagento 2 Mini Cart Plugin di.xml doesn't pass attribute informationMagento 2, Change On hover instead of 'click' for mini cartClose magento 2 minicart on clickMini cart should open automatically and close after few seconds when product is added in Magento 1Load a jQuery script after fully loading the page
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How can we close the mini cart popup on Magento 2? (clicking outside is not working). I have already tried the following method on footer.phtml. It's working on android phones and browsers but iPhones, it is not working.
<script>
require(['jquery', 'jquery/ui'], function($)
jQuery(document).ready( function()
$('body').click(function (event)
);
);
);
</script>
magento2 mini-cart
New contributor
add a comment |
How can we close the mini cart popup on Magento 2? (clicking outside is not working). I have already tried the following method on footer.phtml. It's working on android phones and browsers but iPhones, it is not working.
<script>
require(['jquery', 'jquery/ui'], function($)
jQuery(document).ready( function()
$('body').click(function (event)
);
);
);
</script>
magento2 mini-cart
New contributor
add a comment |
How can we close the mini cart popup on Magento 2? (clicking outside is not working). I have already tried the following method on footer.phtml. It's working on android phones and browsers but iPhones, it is not working.
<script>
require(['jquery', 'jquery/ui'], function($)
jQuery(document).ready( function()
$('body').click(function (event)
);
);
);
</script>
magento2 mini-cart
New contributor
How can we close the mini cart popup on Magento 2? (clicking outside is not working). I have already tried the following method on footer.phtml. It's working on android phones and browsers but iPhones, it is not working.
<script>
require(['jquery', 'jquery/ui'], function($)
jQuery(document).ready( function()
$('body').click(function (event)
);
);
);
</script>
magento2 mini-cart
magento2 mini-cart
New contributor
New contributor
edited May 24 at 7:41
magefms
3,3063631
3,3063631
New contributor
asked May 24 at 6:37
FedFed
183
183
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
In your footer.phtml
above with your jquery
, just add this:
<body style="cursor: pointer;" onclick="">
</body>
1
Now It's working. Thanks for the help
– Fed
May 24 at 8:29
add a comment |
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
);
);
Fed is a new contributor. Be nice, and check out our Code of Conduct.
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%2f275950%2fmagento-2-mini-cart-doesnt-close-when-click-on-outside-in-iphones%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In your footer.phtml
above with your jquery
, just add this:
<body style="cursor: pointer;" onclick="">
</body>
1
Now It's working. Thanks for the help
– Fed
May 24 at 8:29
add a comment |
In your footer.phtml
above with your jquery
, just add this:
<body style="cursor: pointer;" onclick="">
</body>
1
Now It's working. Thanks for the help
– Fed
May 24 at 8:29
add a comment |
In your footer.phtml
above with your jquery
, just add this:
<body style="cursor: pointer;" onclick="">
</body>
In your footer.phtml
above with your jquery
, just add this:
<body style="cursor: pointer;" onclick="">
</body>
answered May 24 at 7:32
magefmsmagefms
3,3063631
3,3063631
1
Now It's working. Thanks for the help
– Fed
May 24 at 8:29
add a comment |
1
Now It's working. Thanks for the help
– Fed
May 24 at 8:29
1
1
Now It's working. Thanks for the help
– Fed
May 24 at 8:29
Now It's working. Thanks for the help
– Fed
May 24 at 8:29
add a comment |
Fed is a new contributor. Be nice, and check out our Code of Conduct.
Fed is a new contributor. Be nice, and check out our Code of Conduct.
Fed is a new contributor. Be nice, and check out our Code of Conduct.
Fed is a new contributor. Be nice, and check out our Code of Conduct.
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%2f275950%2fmagento-2-mini-cart-doesnt-close-when-click-on-outside-in-iphones%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