Custom app data store

I’ve developed a Shopify app using an extension block for an order form, which I’ve integrated into my Shopify store. My goal is to seamlessly convert the data entered by customers into actual orders that appear in the Shopify admin order dashboard. Could someone please guide me through the step-by-step setup process for achieving this?


  # {{ block.settings.form_title }}
  
  
  
  
  

    

      ×
      
      
      

        ## {{ product.title }}
      {% if product.featured_image %}
        
      {% endif %}

      
      
    

  

{% schema %}
{
  "name": "Order Form",
  "target": "section",
  "class": "app-dashboard-form",
  "stylesheet": "order-app.css",
  "javascript": "order-app.js",
  "settings": [
    {
      "type": "text",
      "id": "form_title",
      "label": "Form Title"
    }
  ]
}
{% endschema %}

Hello @avdhesh7289

You can add data in item properties or attributes. If you don’t want to display properties on the cart page, prefix all properties with an underscore, like this: _fullName, _mobileNo, _address.

If the solution presented meets your needs and addresses your query effectively, I encourage you to accept it as the chosen answer. This will acknowledge the support you received and aid fellow community members in identifying reliable and effective solutions for their similar concerns.
Thank you.