Skip to main content

Add Terms & Conditions

  1. Create a Terms & Conditions page in the store's backend menu under 【Online Store】-【pages】 or 【Settings】-【Policies】 (if this page does not exist).
  2. In the Terms & Conditions page code editor, copy one of the following images or texts and add it using one of the code methods (refer to the corresponding link provided in the website's modification suggestions).
<img src="https://www.9-bill.com/index/img">

Add INTELLECTUAL PROPERTY RIGHTS

  1. Create the INTELLECTUAL PROPERTY RIGHTS page in the store's backend menu under 【Online Store】-【pages】 (if this page does not exist).
  2. In the INTELLECTUAL PROPERTY RIGHTS page code editor, copy one of the following images or texts and add it using one of the code methods (refer to the corresponding link provided in the website's modification suggestions).
<img src="https://www.9-bill.com/index/legal">
  1. In the Shopify admin panel, under 【Online Store】-【Navigation】-【Footer menu】, add the Terms & Conditions and INTELLECTUAL PROPERTY RIGHTS pages.

Why are the added content not displaying?

  1. Please check the code pasted into the code editor on the corresponding page to ensure it is correct and free of spaces or errors.
  2. Has the store initiated a payment integration application?
  3. Please contact Oceanpayment technical support for assistance.

Modification of payment logo at the bottom of the website

Method One

  1. You may modify the website footer logo by installing the Shopify Oceanpayment Connect app.

Method Two

  1. In the shop backend menu, navigate to [Online Store] - [Themes] - [Edit code] and locate the footer.liquid file.
  2. Search for the keyword payment within the footer file's code (quick action: ctrl+F).
  1. Locate the for and endfor tags corresponding to payment, comment out these lines of code by selecting them and pressing ctrl+/. After commenting them out, add the following code on the next blank line:
<img src="{{ 'paypal' | payment_type_img_url }}" height="25" alt="paypal" />
<img src="{{ 'visa' | payment_type_img_url }}" height="25" alt="visa" />
<img src="{{ 'master' | payment_type_img_url }}" height="25" alt="master" />
<img src="{{ 'maestro' | payment_type_img_url }}" height="25" alt="maestro" />
<img src="{{ 'jcb' | payment_type_img_url }}" height="25" alt="jcb" />
<img src="{{ 'american_express' | payment_type_img_url }}" height="25" alt="american express"/>
<img src="{{ 'diners_club' | payment_type_img_url }}" height="25" alt="diners club" />
<img src="{{ 'discover' | payment_type_img_url }}" height="25" alt="discover" />
<img src="{{ 'klarna' | payment_type_img_url }}" height="25" alt="klarna" />
<img src="{{ 'google_pay' | payment_type_img_url }}" height="25" alt="googlepay" />
<img src="{{ 'apple_pay' | payment_type_img_url }}" height="25" alt="applepay" />