使用ROR中的shopify应用程序在shopify网站标题中添加一个按钮

时间:2017-07-05 12:53:36

标签: ruby-on-rails ruby ruby-on-rails-4 shopify shopify-app

我需要在Shopify网站的搜索图标后插入一个按钮,然后再购买shopify应用程序。给我一些建议。

Like this image

先谢谢。

1 个答案:

答案 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

希望这会对你有所帮助!!