答案 0 :(得分:1)
希望您应该在Shopify API的帮助下替换/覆盖商店主题中的代码段/ header.liquid文件,如下所示:
在您的应用中,请在根函数中尝试以下内容:
header = ShopifyAPI::Asset.find("sections/header.liquid")
header.value # returns the contents of the header.liquid
使用rails sub更新您的header.value
!为:
#this will add the button at appropriate place instead `{% endif %}`
header.value.sub!("{% endif %}", "<button type='button'>Click Button</button> {% endif %}")
#do save
header.save
希望这会对你有所帮助!!