FROM CACHE - jp_header
解決済

外部決済名の変更、修正の可否

sato2
Shopify Partner
2 0 1

こんにちは!

ひとつ知りたいのですが、

現在使っている外部決済(SBペイメント)さんでいくつかの決済を利用しています。

例えば楽天ペイの場合、お支払い時に「楽天ペイ - SBPS」とユーザー側に表記されます。

この「-SBPS」を削除する方法はありませんか?ユーザーには関係のない情報なためです。

ちなみにSBペイメントさんからもsyopify側で削除できないか?と弊社に質問してきています。。

リキッドとかで修正できるのかの知識がなく、、ご存じの方がいらっしゃれば教えてください!

1 件の受理された解決策

_osamu_iwasaki_
Shopify Partner
185 47 193

成功

通常プランでは決済ページを変更するのは不可ですが、

Shopify PLUSであれば「SCRIPT EDITOR」で
Rubyを書いて決済ゲートウェイの名称を変更することができます。

 

 

Input.payment_gateways.each do |payment_gateway|
  next unless payment_gateway.name == "楽天ペイ-SBPS"
  payment_gateway.change_name("楽天ペイ")
end

Output.payment_gateways = Input.payment_gateways

 

 

HELP: Shopify Scripts API reference

https://help.shopify.com/en/manual/checkout-settings/script-editor/shopify-scripts#payment-methods

 

APP: Script Editor (PLUSプランのみ利用可)

https://apps.shopify.com/script-editor?locale=ja

元の投稿で解決策を見る

1件の返信1

_osamu_iwasaki_
Shopify Partner
185 47 193

成功

通常プランでは決済ページを変更するのは不可ですが、

Shopify PLUSであれば「SCRIPT EDITOR」で
Rubyを書いて決済ゲートウェイの名称を変更することができます。

 

 

Input.payment_gateways.each do |payment_gateway|
  next unless payment_gateway.name == "楽天ペイ-SBPS"
  payment_gateway.change_name("楽天ペイ")
end

Output.payment_gateways = Input.payment_gateways

 

 

HELP: Shopify Scripts API reference

https://help.shopify.com/en/manual/checkout-settings/script-editor/shopify-scripts#payment-methods

 

APP: Script Editor (PLUSプランのみ利用可)

https://apps.shopify.com/script-editor?locale=ja