Hello,
I need to show the “Order Now” button on the Mobile view, it is visible only on the Desktop view.
Thanks in advance.
Hello,
I need to show the “Order Now” button on the Mobile view, it is visible only on the Desktop view.
Thanks in advance.
Could you provide me store URL? I should be able to answer your question.
Yours faithfully!
Hey @JerrySedra ,
Welcome to the Shopify community!
Please share your store URL.
So that I will check and let you know the exact solution here.
Thank you.
Raman!
kindly send me the the link to your store so that i can tell you what happen to it exactly
Hey @JerrySedra ! It seems like the order now is a part of your navigation menu and you can see it when you open the menu when viewing from a mobile phone as you can see from this screenshot (https://ibb.co/MpYFwyV).
However, if you want to add a button to your mobile view similar to the one shown in desktop view, then you will need to make some changes to your liquid and HTML layout.
You will need to go to your theme.liquid file (located in the “layout” folder).
Paste the below code snippet inside the main tag (right before the line where it says {{ content_for_layout }}
Order Now!
@media (min-width: 1023px) {
.order-now-btn {
display: none;
}
}
The end result should look like the this screenshot (https://ibb.co/4M3B5HG).
If this fixes your issue, please mark my reply as a solution.