Shopify Inbox with custom storefront #878
-
As far as I can trace it, Shopify Inbox chat widget is not much more than any other widgets other than lacking documentation and support. Would it be possible to load the chat widget on a custom storefront with some script tags and maybe some HTML or iframe to hook into? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 10 replies
-
Interested in this as well |
Beta Was this translation helpful? Give feedback.
-
Any update on this? It would be great to be able to embed the Shopify Inbox via code snippets |
Beta Was this translation helpful? Give feedback.
-
@Chadyka @JacopoKenzo @nerioslamaj I managed to get Inbox to work with Hydrogen with this workaround. Here are the steps:
import {Script} from '@shopify/hydrogen'
export default App() {
return (
....
<Script
async
src='YOUR-COPIED-SRC_INC-QUERY-PARAMS'
/>
)
} Note: The widget won't fully work in We are hoping to improve this flow by adding a code snippet to the Inbox app settings page |
Beta Was this translation helpful? Give feedback.
-
It is great to be able to try Shopify Inbox with Hydroen storefronts! However, I have the same problem as @agoyal118. Same warning in the console and the widget intermitently refuses to show up. Additionnaly, the iframe is white and not transparent as it should be. The widget language also doesn't match the storefront's locale. We followed @juanpprieto 's example to the letter. You can check it live here on our shop: contrebande.co/contact We would very much love to fix these snags... Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hi is there any updates regarding releasing official API for Shopify Hydrogen/Storefront? |
Beta Was this translation helpful? Give feedback.
@Chadyka @JacopoKenzo @nerioslamaj
I managed to get Inbox to work with Hydrogen with this workaround. Here are the steps:
shopifyChatV1.js
src
root.tsx
add the following script tagNote: The widget won't fully work in
localhost
because it is…