An example of a simple GraphQL query to see all data within a particular WebApp in your site:
query { records( per_page: 20 page: 1 filter: { table: { value: "webapp_1" } } ){ total_entries results { id properties }... (More)
Discuss all things code!
An example of a simple GraphQL query to see all data within a particular WebApp in your site:
query { records( per_page: 20 page: 1 filter: { table: { value: "webapp_1" } } ){ total_entries results { id properties }... (More)
Hello Everyone,
I have implemented inventory control in my site referring to this doc : https://developers.siteglide.com/checking-available-inventory-in-the-cart-layout.
Inventory check function is running good and also showing message if quantity input is above inventory.
(URL : https://gilbert-amol-7.prod01.oregon.platform-os.com/votre-panier)
But my checkout button... (More)
Hi Amol
I used <img src='{{ product.product_data.properties["module_field_14/product_2"] | asset_url }}' alt="{{ product.product_name }}"/>
This is a snippet of the code I used below:
<div class="order-completed-grid"> {% for product in this.order_products -%} <div class="order-completed-card"> <img src='{{ product.product_data.properties["module_field_14/product_2"] | asset_url }}' alt="{{... (More)