How can i create custom form on shopify? - shopify

i want create menu ( Service support ). when will be Customer click on service support menu, then it will be display on form like- ( name, email id, phone no, address, pin code ,invoice upload, invoice no, market place (drop down) , Description ) after that it will be submit and customer query will be display on shopify dashboard.
enter image description here

It is not possible to add any data to Shopify Dashboard. In stead you can follow below steps to achieve you goal.
Create custom APP ( which will display query data )
Create custom form using Shopify Liquid and send data to your app database using APP PROXY
Store Query Data in your DB and display it on your app dashboard.
Hope this will help.

Related

Liquid - get product ID and display custom/specific information dynamically

I am trying to add a small 'lockup' / promo to a page that loads information dynamically based on page.metafield information. Replacing images, video ID's etc. Which all works just fine.
My client is asking for a small area to display a product that relates to this dynamically changing content and I am struggling to come up with a good way to do this.
The current setup is that we have 30 pages with a set of 8 metafields each page. Each one of these pages must show a different , single product with an image, title, price, buy button and another button that links out to a partner site.
I can create snippet and load almost all of this info through metafields manually (price, title etc the client could just add to another metafield) but I would prefer to load a product to pull this info so it can be added to cart. Although I can add product data manually, I still don't actually know which product will get added to the cart, because I'm on a 'page' not a 'product'.
The products themselves are using a custom template that is different to the rest of the site so that seems like its not an option. The template for this content page is just 'page' but surely I can call the product object someway? If the client entered a product ID in the metafields, is there a way of pulling that IDs data easily?
Whatever you mean by pulling ID's, but there are a couple of ways of dealing with this. One, you have a Storefront API token, allowing you to freely and securely call Shopify with JS and get back all the data about the ID you're interested in. Or, you have an App installed in the store, in which case you can setup and callback an App Proxy, providing that ID, and getting back all the info you need. Lots of options!

I want to show recently view product in page account Bigcommerce

I want to show recently view product in page account Bigcommerce
This template in cornerstone has the code to show recently viewed products https://github.com/bigcommerce/cornerstone/blob/master/templates/pages/account/recent-items.html
If you want to access the products directly from your own template, you have access to customer.recently_viewed_products.items

Eliminate online sale and add WhatsApp Direct | PrestaShop

I am new to Prestashop and I am using it to create a business website.
Basically I am using Prestashop to show only the products and not make any online sales.
Because of this, I don't need visitors to log in, create accounts, bookmark, or add to cart. (Picture 1)
I just need you to take them to WhatsApp instead of buying, consulting specifically for that product. (Picture 2)
How can I remove the Create Account, Login, "My Account" and "My Cart" functions?
Besides this, how could I change the PrestaShop logo in the administrator login and in the panel?
Note: I am from Argentina, and I am using Google translator haha.
You can change logo from from Design > Themes & Logo tab
For making things like you explain
You can switch PrestaShop into catalog mode and keep display prices enabled
Shop Parameters > Product Settings

Shopify - Product filter with parameter

I am looking for custom product filter using my custom Shopify App. I have created an app like structure and which is append to the product collection template.
How can I pass custom parameters like price, category or product attributes via URL or how it will render the product on the collection page.
Thanks,
Navas
If you created an App, you can add a Proxy to it. The Proxy allows Shopify to send secure data to your App via a Javascript call. You get the data from the shop about the product, you filter it, and you return JSON data if you want, to help the front end. Works great. Try it.

Broadleaf commerce display some product to logged in users only

I am developing an e-commerce application using broad-leaf commerce.
My requirement is I have to add an product from login panel and display that product to only logged in users. Here few product products will be visible to all users (guest too) and few will be visible to only logged in users.
is there any way to do this?
Thanx soulfly1983 fou your try,but I found another alternative to do this without any customization. here is the full procedure..
Add a new category from admin panel.
Add a new page from admin panel (under content tab) and note the URL should be the same of category and page.
3 In the page click on rule tab.
4 Check the yes button in "Restrict to certain customers?"
Click +rule button and the select "match all" and select customer registered is equal to false
So this page will be visible to only guest users.
In the HTML body section of the rule (in general tab) write a message "you need to log in to view this stuff"
When user will log in successfully the user will not be able to the page , because we applied a rule that only logged out users can see the page so this time user will see the category and products added to that category.
am I doing right? any regarding this suggestion?
You can either extend the Product entity and add a field that will indicate whether that product will be visible to all users, or alternatively you could simply add an attribute for each product via the admin interface. Either way you will need to modify the UI logic so that it will take this additional field (or attribute) into consideration.