Hey on my store I can only accept bank transfer payments which customers have to manually pay but a few customers have been pressing this ‘pay now’ button that doesn’t do anything but customers are thinking they have paid after pressing it so can anyone please help me remove it. I have circled it in the photo below.
You can get the class of that button and add the display: none property.
example
.your-button-class {
display: none !important;
}
Hi @Taryckrich ,
Please check out our private message!
Hey Im not sure what the class of the button is, i tried pay-now but it’s not working, do you have any idea what it might be? I can try different ones
If you place an order via bank transfer then refresh the page after its confirmed and you’ll see the button it’s labelled thank you for now until I can remove the button altogether
hey i cant see any private message
Can you share your store url
Also you have to refresh the page to see the button Im talking about after the order is placed
Hi @Taryckrich ,
Here are the steps you can follow:
1, Navigate to Online Store > Themes > Edit Code.
2, Locate and open the theme.liquid file.
3, Paste the code snippet provided below right before the closing head tag, then save your changes.
If this doesn’t work, please try pasting this code below in theme.css, custom.css, or base.css to see if it’s working.
#app > div:nth-child(1) > div > div._1fragemps._1fragempp._1fragemw8._1fragem2i._1fragemo1.CdKUe > div > main > div > div > div > div > div._1fragemo1._1fragem3c._1fragem4v._1fragem73._1fragemol._16s97g7f._16s97g7h._16s97g7i._16s97g7j._16s97g7p._16s97g71j._16s97g71l._16s97g71m._16s97g71n._16s97g71t > div:nth-child(2) > section > div > section > div._1ip0g651._1fragemo1._1fragem4q._1fragem73._1fragem3c > div > div > div > div._1fragem2i._1fragemo1 > a {
display: none;
}
We hope this assists in resolving the issue.
If you find our solution helpful, kindly consider Liking and Marking it as Accepted. Thank you!