Website Edits

Hello I am in need of a few Shopify edits. For some reason some code as added by another editor on my site that is producing a dutch tag on my cart drawer discount page about a bogo promotion… I need to get that removed and also I am trying to have the cart drawer page tab changed from complete order in this green color to a regular tab that just says checkout black tab with white words is anyone available to do that? I am sending an attached screenshot of the issues below

hello thank you so much for responding yes please how do we start?

Share your store link let me take a close look at it.

On it. I looked at your site (given in the image). The source code tells about its theme and app you are using.
Working on the step by step solution. Will be posting soon.

I looked at your site.

Theme: Palo Alto.

The cart drawer is the UpCart app (confirmed from your site’s code).

Both issues live in that app, not in your theme, so editing theme code will not fix them.

step by step guide:

1. Green “COMPLETE ORDER” button to a black “Checkout”

Two parts, both in UpCart. Open your cart in the UpCart app first.

Color: Design tab, then Button settings. Set Button color to black (#000000) and Button text color to white.

Text: Settings, then Edit copy, then Footer, then Checkout button text. Type Checkout • {{total_price}}.

2. The red Dutch “1+1 GRATIS” message

That is a discount message set in Dutch, not a bug in your code. In UpCart open the Discounts module, then Manage all discounts, and edit that discount’s text to English, or turn it off.

Warning: You do not need to add anyone as a staff user or email your login for any of this. It is all in your own UpCart dashboard. Be careful giving store access to strangers.

Tested on an UpCart install: these are the exact screens for the button color, the button text, and the discount message.

Hello friend thank you for trying to help
My website does not currently have an upcart app installed so Im
Not sure why the cart drawer is having these errors

Tyeshia H

You mght not have installed the upcart app. But your source code says otherwise. The cause is a script a previous editor pasted into your theme, not an app.

Your live cart page loads this external script:

<script src="https://shopoe.net/jquery.js" defer></script>

and the cart badge uses upcart-discount-code-badge. That script draws the cart drawer: the green “COMPLETE ORDER” button and the red Dutch “1+1 GRATIS” banner.

How to fix

  • Online Store > Themes > > Edit code.
  • Search your theme for shopoe.net (check theme.liquid and any custom snippets or sections).
  • Remove the <script src="https://shopoe.net/jquery.js"> line, then Save.
  • Recheck the cart drawer.

Important: shopoe.net is not a Shopify app or a known service. An unknown external script like this can change your store or track your visitors. If you did not add it, treat it as unauthorized: remove it

You can check it yourself: open your cart, right-click > View Page Source, then press Ctrl+F and search shopoe and upcart.

Hi @thinkrichbrand

Yes, this can definitely be sorted out.

The “BOGO” Dutch message could be coming from any one of the below:

  1. Custom code implemented in your theme (typically in cart drawer/related cart Liquid files).
  2. Some kind of translation/locale implementation that is loading incorrectly.

It’s best to find out what’s causing this message and resolve the issue.

In case of the cart drawer button, if possible according to your theme’s language settings, you could change the text “Complete Order” to “Checkout”. In case the text is hardcoded within the theme, you could update the theme code to make the button appear as a black button with white text.