No content to show
User Activity
02-10-2022
So this is my Products controller class ProductsController < AuthenticatedController
def index
@Anonymous = ShopifyAPI::Product.find(:all, params: { limit: 10 })
render(json: { products: @Anonymous })
end
end And this is how I want to d...
02-07-2022
This is how I can change my own meta tags, but I want my app to be able to change the meta tags of the store it was installed on.
02-07-2022
I have an app and for it to work as I want to, I need to add <meta> tags to the customer's website. How do I do that? I have only found metafields, but it doesn't seem to be the right thing. Is there an API that I can use to edit a customer's head? E...
I have an existing web application with ruby on rails and I think it would be perfect as a shopify app. I did everything (parnter account, development store, etc.) and when I created a test app with shopify app create rails , I was able to add the ap...