Is it possible to create a sign up form that sends the customer's details (email address, name, etc.) to both my Mailchimp account's mailing list and my Shopify store's customer list upon submission?
This app lets you add your customers(who sign up for marketing) automatically to the mailchimp list. You can add a field in the form which will add all users to the marketing list of shopify and then automatically to the mailchimp list.
You can find information about creating Customers to Shopify in their API:
Creating a new customer
You can also find information in how to add a member to a list in MailChimp's API:
Adding a new member to a list
Related
I Want to create my own customized modules in Shopify when customers is logged in.
Example: I would to show near by doctors through the map.
Is it possible to do in Shopify.
Yes it is. You would install a custom App that would contain a list of doctors and locations. You would create a Proxy in the App so you could make a secure callback to the endpoint. As data, you'd send the customer ID. Using the customer ID, the App would get the customer's location. The data you return would be the matching doctors.
Very common to do this with Shopify.
How to show the list of user who fill the contact form in shopify?
Can someone tell me what fields and in which table store this info?
how to get it and show in the shopify admin dashboard
Welcome to StackOverflow.
There is no way to show the users who submitted the contact form in Shopify. This information is not stored in the back end so you don't have access to it.
The only way to get this information is to review all of the emails that were send to the designated email address in the store.
Where to see all subscribers user list. Who fill and submit the newsletter form in shopify. and where we set the email to notify
[in red border is my subscribers form][1]
https://i.stack.imgur.com/TEhQj.png
Have a look at Shopify documentation to know more about how customer list for marketing works in Shopify.
To see the customers who have opted in for email updates, you can see them by going to
Customers -> Accepts Marketing
Shopify does not provide any built in tools to send emails to those customers. So you can choose any relevant app from Shopify app store that will allow you to send promotional emails to customers who subscribe to your mailing list.
i want to develop a chrome extension to see stats for any store which develop in shopify, can i access any store products without API-Key and Password in shopify?
No, you cant access products json without using api-key or permanent token of the store.
But still you want to access the product details you atleast needs the handler of the product.
Lets say your store is "abc.myshopify.com" and handler of your product is "xyz", then you can product json of xyz by HTTP GET call in following url
https://www.abc.myshopify.com/products/xyz.json
in general
https://www.[storename]/products/[product-handle].json
You could try using the Shopify StoreFront API.
It allows to get information of your shop from from your own website or custom app. Although it doesn't need a API Password, it needs a Api Key that doesn't need to be a secret.
The documentation says this (the first point is the important):
Using the Storefront API, you can:
Fetch data about a single product or a collection of products to
display on any website or device.
Create unique checkout experiences
with full control over the shopping cart.
Create new customers or
modify existing ones, including address information.
Allow customers
to select unique product options.
There is no way shopify will provide store details (product list) without api authentication.
For your requirement, I would suggest to create a shopify app which will sync all product details to your storage and you can access data from there.
The Bigcommerce admin area shows a Receive Marketing Emails field for a Customer. This field does not appear in the API response data or the documentation for the Customer entity in the documentation.
Is there some way to access this value through the API?
I learned from Bigcommerce support that the Receive Marketing Emails field cannot be accessed through the API and that it does not represent opt-in to a store's email newsletters. The value is set for all customers by default and it refers to whether or not they will receive the "Abandoned Cart" or "Product Review" emails, if those are enabled in the store. If a customer opts out of those emails through the link in the email they receive, then this value will be changed to 'No'.