Product pages - Get customization information for products (2023)

Sectioned themes

Use an app to collect customization information for products

You can install a free or paid product customization app from the Shopify App Store to easily add custom fields to your product page.

Edit your theme code to collect customization information for products

You can edit your theme's code by creating an alternate product page template that includes custom form fields, or line item properties. You can then apply your new template to any product for which you want to collect customization information from customers.

Create a template that includes line item properties

To create a new product page template:

    1. From your Shopify admin, go to Online Store > Themes.
    2. Find the theme you want to edit, and then click Actions > Edit code.
    3. In the Templates directory, click Add a new template.
    4. Choose product from the drop-down menu, and name the template customizable:

      Product pages - Get customization information for products (1)

    5. Click Create template. This creates a copy of your product.liquid template called product.customizable.liquid. The new file will open in the code editor.
    6. Find the following line of code:
      {% section 'product-template' %}
      Replace it with:
      {% section 'product-customizable-template' %}
    7. Click Save.
    8. In the Sections directory, click Add a new section.
    9. Name your new section file product-customizable-template. Click Create section. Your new file will open in the code editor.
    10. Delete all of the default code so that the file is empty. Copy all of the content from your product-template.liquid file (in the Sections directory), and paste it into your new product-customizable-template file.
    11. Click Save.

Create custom form fields

You can add as many custom form fields to your product page as you need. You can use the Shopify UI Elements Generator tool to easily generate the HTML and Liquid code for each form field that you want to add to your cart page. This tool was created by Shopify to help simplify the process of adding custom user interface elements, such as form fields and icons, to Shopify themes.

(Video) Shopify Product Page Customization | Complete Tutorial Step By Step

  1. Go to the Shopify UI Elements Generator.
  2. In the Set your form field section, select the type of form element that you want to use from the Type of form field drop-down menu:

    Product pages - Get customization information for products (2)

  3. If you want your theme to prevent customers from adding a product to the cart before they have filled in your form field, check Required.
  4. You can see a preview of your form field in the Preview section:

    Product pages - Get customization information for products (3)

  5. Copy the generated code from the box in the Grab your code section:

    Product pages - Get customization information for products (4)

Add custom form fields

To add custom form fields to your template:

  1. From your Shopify admin, go to Online Store > Themes.
  2. Find the theme you want to edit, and then click Actions > Edit code.
  3. In the Sections directory, click product-customizable-template.liquid.
  4. Find the code type="submit" in the file. This is part of the code for the Add to cart button. On a new line above the block of code that contains the Add to cart button, paste the form fields for your product customization:

    Product pages - Get customization information for products (5)

    In the above example, the form field code adds an Engraving field where customers can enter text for a custom engraving. The line where you place the code determines where the form field will appear on your product page. You can experiment with putting the code in different places in the file.

    (Video) Learn How to Add Custom Field in Shopify Product Page {% If product.title == "Your product name" %}

  5. Click Save.

To make the new form fields appear on product pages, you need to set your customizable products to use the new product-customizable-template.liquid template that you created.

Apply your new template to a product

To apply a template to a product:

  1. From your Shopify admin, go to Products > All products.
  2. Click the name of the product that will use your new template.
  3. In the Theme templates section, choose product.customizable from the Product template menu.
  4. Click Save.

The custom form fields that you created will now appear on that product's page. Repeat the steps to enable the template on multiple products. You can use the bulk editor to enable your template on many products at once.

Allow file uploads

If you create a form field input with type="file", then the customer's browser will show a file upload button for that form field. As a store owner, you can view any files that your customers upload. Letting customers upload files allows for some creative store ideas — like printing customer artwork onto canvas or accepting custom graphics to print on clothing.

If the form in your product-template.liquid contains a file upload field, the form tag in your customizable product template must have the attribute enctype="multipart/form-data".

Note:File uploads will work only on a page style cart, and are not compatible with cart drawers or cart popups. To change your cart style, go to the theme editor.

(Video) 13.4 Product page: How to create and customize a template for each product page @ Shella theme

Show customizations in the cart

If your theme doesn't display customizations in the cart, then you can add some code to either your cart-template.liquid, or your cart.liquid file to check for line item properties and display them if they exist.

Show line item properties in the cart

To show product customization information in the cart:

  1. From your Shopify admin, go to Online Store > Themes.
  2. Find the theme you want to edit, and then click Actions > Edit code.
  3. In the Sections directory, click cart-template.liquid. If your theme doesn't have a cart-template.liquid, then open the Templates directory and click cart.liquid.
  4. Find the line containing the code {{ item.product.title }}. On a new line below, paste the following code:
    {% assign property_size = item.properties | size %}{% if property_size > 0 %} {% for p in item.properties %} {% assign first_character_in_key = p.first | truncate: 1, '' %} {% unless p.last == blank or first_character_in_key == '_' %} {{ p.first }}: {% if p.last contains '/uploads/' %} <a class="lightbox" href="{{ p.last }}">{{ p.last | split: '/' | last }}</a> {% else %} {{ p.last }} {% endif %} <br> {% endunless %} {% endfor %}{% endif %}
  5. Click Save.

This code checks each line item to see if it has any line item properties, and displays them if they exist.

Update links that remove items from the cart

Any links that remove items from your cart will need to be updated to work with custom line item properties:

  1. From your Shopify admin, go to Online Store > Themes.
  2. Find the theme you want to edit, and then click Actions > Edit code.
  3. In the Sections directory, click cart-template.liquid. If your theme doesn't have a cart-template.liquid, then open the Templates directory and click cart.liquid.
  4. Find any a tag that has an href value starting with /cart/change.
  5. Change the full href value to href="/cart/change?line={{ forloop.index }}&quantity=0".
  6. Repeat these steps for every a tag in cart-template.liquid that has an href value starting with /cart/change.
  7. Click Save.

Update item quantity fields in the cart

Any fields that display item quantities in your cart will also need to be updated to work with custom line item properties:

  1. From your Shopify admin, go to Online Store > Themes.
  2. Find the theme you want to edit, and then click Actions > Edit code.
  3. In the Sections directory, click cart-template.liquid. If your theme doesn't have a cart-template.liquid, then open the Templates directory and click cart.liquid.
  4. Find any input tag that has aname value of updates[{{ item.id }}].
  5. Change the full name value to name="updates[]".
  6. Repeat these steps for any input tag in cart-template.liquid that has a name value of updates[].
  7. Click Save.

Show customizations in email templates

You can optionally also display line item properties in email notifications. This will let customers see their product customizations when they receive an email about their order.

  1. From your Shopify admin, go to Settings > Notifications.
  2. Click the name of the notification template that you want to add line item properties to.
  3. Find the following code:
    {{ line.title }}
    Replace it with:
    {{ line.title }}{% for p in line.properties %}{% unless p.last == blank %} - {{ p.first }}: {{ p.last }}{% endunless %}{% endfor %}
  4. Click Save.
  5. Repeat these steps for any other email notifications that you want to include line item properties.

Hide line item properties (optional)

Line item properties that you have built into your customizable product templates are visible on your product pages and, if you have customized your cart code, on your cart page as well. Line item properties are also visible on the checkout page. There might be times when you do not want a line item property to be visible to the customer, for example, if you want to attach some internal information (such as a bundle ID or tracking number) to a product.

(Video) How to create customizable products in Shopify (FREE)

If you want a line item property to be hidden on the cart or checkout pages, then you can place an underscore _ at the beginning of its name value. For example, the name value for an internal Bundle ID might look like this:

name="properties[_bundle_id]"

If you did not use the code in this tutorial to show line item properties (or customizations) in the cart, then your theme code might not include the code that keeps line item properties with name values beginning with an underscore hidden. To modify your theme code to hide line item properties in the cart, you can add the following lines of code to your cart-template.liquid or cart.liquid file:

{% assign first_character_in_key = p.first | truncate: 1, '' %}{% unless p.last == blank or first_character_in_key == '_' %}

The results should look similar to this:

{% assign property_size = item.properties | size %}{% if property_size > 0 %} {% for p in item.properties %} {% assign first_character_in_key = p.first | truncate: 1, '' %} {% unless p.last == blank or first_character_in_key == '_' %} {{ p.first }}: {% if p.last contains '/uploads/' %} <a href="{{ p.last }}">{{ p.last | split: '/' | last }}</a> {% else %} {{ p.last }} {% endif %} {% endunless %} {% endfor %}{% endif %}

Showing line item properties at checkout.

Line item properties will only be visible to customers during checkout if they are stored as a string. Numbers will be hidden, though they will still be tied to the order and show up in the Admin > Orders screen. For example:

(Video) HOW TO ADD PRODUCTS ON SHOPIFY | PRODUCT PAGE CUSTOMIZATION

  • line_item_prop: "1234" (will be visible on the Order and during checkout)
  • line_item_prop: 1234 (will be visible on the Order and hidden during checkout)

For context, this was introduced as a feature because line item properties were often used to store IDs which were not intended to be customer-facing. So theme developers can hide line item properties during checkout by storing them as an integer or a string with an underscore at the beginning.

TyW | Online Community Manager @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit the Shopify Help Center or the Shopify Blog

FAQs

How do I customize my Shopify product page? ›

To start customizing your product page template, from your Shopify admin, go to Online store > Themes. Click the Customize button to be redirected to the Theme editing page. Select Product pages from the drop-down list and start customizing your product page template.

Can you add customization to Products on Shopify? ›

For custom product options Shopify, create custom fields using an external website. The website allows you to create your form and it will show you a preview on the right side. It will also create the code for you so you don't have to create it from scratch.

Can you customize pages on Shopify? ›

You can do this by navigating to Online Store > Themes in your Shopify admin dashboard. Once here, click on Customize next to your current theme. When the customization window opens, select the page template you want to modify in the upper dropdown menu.

How do I add a custom field to a Shopify product page? ›

Steps to add Custom Fields on Shopify Product Page

Open the Shopify UI Elements Generator. Select the type of form element from the Type of form field drop-down menu. This will automatically generate the HTML code for each form field you want to add to your product page. Copy the generated code.

What is a product page in Shopify? ›

A Shopify product page is a page on your online store that lays out all the details of a given product. This product detail page isn't just a litany of product facts, though. It needs to persuade shoppers to click that Add to Cart button. Think of it as a marketing landing page for your product.

How do I create an eCommerce product page? ›

List of 8 eCommerce Product Page Best Practices
  1. Use big and clear images: ...
  2. Add prominent call to action: ...
  3. Ease navigation between pages: ...
  4. Create urgency: ...
  5. Jazz it up with videos: ...
  6. Compare Prices: ...
  7. Add trust badges and customer reviews: ...
  8. Keep The Stock Meter Updated And Prominent:
4 Feb 2022

What are examples of customized Products? ›

15 Brand-Customized Products
  • Temporarily Tattooed Nail Decals. ...
  • Customized Bicycle Bell Tunes. ...
  • Webcam-Controlled Gaming Avatars. ...
  • Custom DNA Bracelets. ...
  • Chic Bespoke Boots. ...
  • Eco-Friendly Customized Printers. ...
  • Personalized Social Media Compilations. ...
  • Personalized Sickness-Curing Campaigns.
27 Feb 2014

Can you sell your own Products on Shopify? ›

Can you sell your own items on Shopify? Yes, you can make and sell crafts and other handmade items on Shopify. If you're a maker, you can set up a store to sell your goods directly to your fans. Also consider selling across multiple sales channels, like online craft marketplaces, to extend your reach.

What are product options? ›

In this case, a product option is a specific type of variation, like Size or Color, and the product variants are the individual choices listed within those options, like Large or Red. Some eCommerce stores use product options to refer exclusively to personalizations that can be made to a product, like custom engraving.

How do I create a custom product on Shopify without an app? ›

However, the steps are basically the same no matter what theme you're using.
  1. Step 1: Create a new product template. ...
  2. Step 2: Add the code for the form fields you want to use.
  3. Step 3: Customize the Cart page to show your custom product options. ...
  4. Step 4: Customize order confirmation emails. ...
  5. Step 5: Test it out.
22 Mar 2017

Is Shopify fully responsive? ›

All of Out of the Sandbox Shopify themes are fully responsive, including one that bears the name Responsive, and have been carefully crafted to conform to all popular devices and screen sizes, which makes them ideal for any store owner looking to offer an online store that looks great no matter what the shopper is ...

How many pages can I have on Shopify? ›

There is no limit to the number of pages you can use on Shopify. You can use unlimited pages in Shopify.

How do I use advanced custom fields in Shopify? ›

1. Installing Advanced Custom Field (ACF)
  1. Step 1: Go to Advanced Custom Field in the Shopify App Store after you logged in to your myShopify account.
  2. Step 2: Click the Add App button.
  3. Step 3: Log into the App Store.
  4. Step 4: Confirm App installation by click Install App .
  5. Step 5: Use the app!

How do I add a custom field to a product admin on Shopify? ›

1. Installing Advanced Custom Fields (ACF)
  1. Step 1: Go to Advanced Custom Fields in the Shopify App Store after you logged in to your myShopify account.
  2. Step 2: Click the Add App button.
  3. Step 3: Log into the App Store.
  4. Step 4: Confirm App installation by click Install App .
  5. Step 5: Use the app!

How do I add a custom text box in Shopify? ›

Add text field to shopify product page! - YouTube

What should a product page contain? ›

Here are the 7 product page requirements:
  • Feature image.
  • Gallery or product photos.
  • Product overview, including title, price, features, CTA and customization options.
  • Product description.
  • Social proof, including review and ratings.
  • Similar product suggestions (upsell and cross sell).

How do you write a product page? ›

8 Easy Rules to Write Product Descriptions That Sell
  1. Know who your target audience is.
  2. Focus on the product benefits.
  3. Tell the full story.
  4. Use natural language and tone.
  5. Use power words that sell.
  6. Make it easy to scan.
  7. Optimize for search engines.
  8. Use good images.
15 Oct 2020

What makes a good product page eCommerce? ›

According to Econsultancy's Ecommerce Best Practice Guide, an effective product page should include the following: A product overview, including name or brand, the price, and a short description of features. Product photos, i.e images to allow consumers to better see the details of products.

What is product list page? ›

A product listing page (PLP) is a page on a website that presents a list of products based on a category or search query. This page is an essential element of the eCommerce experience as it funnels site visitors to product detail pages and closer to conversion.

How do you Customise a product? ›

Customization of products means a customer can select features like color, design, functionalities, add-on components or other options to make a more unique item rather than a mass produced one. For example, a shoe company can allow customers to design and order a one-of-a-kind sneakers through their online platform.

Why is product customization important? ›

Customization is a great business strategy because it makes customers happier, and happy customers are repeat customers. According to a McKinsey study, successful personalization programs yield more engaged customers and drive up the top line.

What is customization strategy? ›

Customization is a new strategy to deal with changing customer demands, which enables firms to enhance their interaction with customers. 8. In this approach, both interactional and operational aspects must be flexible in order to allow products to be customized.

Is selling on Shopify free? ›

Unlike selling on a marketplace like Amazon or eBay, Shopify does not charge you any selling fees — just payment processing fees. This means you get to keep more of the profit from each sale for yourself. As mentioned earlier, Shopify offers a 14-day free trial on any selling plan you choose from.

How much does Shopify take per sale? ›

Shopify also takes 1.6% of each online sale, and 20p. You are getting a lot for your money. This is for established businesses that have achieved a certain amount of ecommerce success, and want to grow further.

How much is Shopify fees? ›

Shopify Basic costs $29 per month, with 2.9% + 30¢ per online transaction. The main Shopify plan costs $79 per month, with 2.6% + 30¢ per transaction. Advanced Shopify costs $299 per month, with 2.4% + 30¢ per transaction.

How do you manage product variation? ›

Product Variant Management
  1. Grow market share with product variant management to meet customer needs. Traditional approaches to manufacturing make the production of variants and configurations more complex. ...
  2. Managing controls, platform modules, and configurations. ...
  3. Learn more about product variant management with Windchill.

What is a product variation? ›

A variation product is a single product with specific values for all variation attributes. For example, a shoe that is blue, size 10, and width A. A variation product is a real product that has attributes in addition to the variation attributes, such as SKU, name, description, images, and price.

What does product variety mean? ›

The term product variety is being used here to refer to the number of variants within a specific product group, corresponding broadly to the number of "brands" as the term is used in the marketing literature or the number of "models" in consumer durable markets.

How do I create a product template in Shopify? ›

Step 1: Go to Online Store > Themes. Step 2: Click on the Customize button. Step 3: Use the dropdown menu to select the “Product” template type. Step 4: Click on Create template.

How do I add a custom button on Shopify? ›

Tip
  1. From the Shopify app, tap Store.
  2. In the Sales channel section, tap Buy Button.
  3. Click Create a Buy Button.
  4. Click Collection Buy Button.
  5. Select the collection or, use the search to find the collection. Click Select.
  6. Optional: click Customize. ...
  7. Click Done.
  8. Click Copy code.

How do I get more product options on Shopify? ›

Steps:
  1. From your Shopify admin, go to Products.
  2. Click the name of the product.
  3. In the Options section, click Add another option.
  4. Enter the option information in the fields.
  5. Click Save.

What is responsive design in Shopify? ›

Responsive is a flexible theme designed to look sharp across all devices. Help your customers shop easily and quickly, wherever they are.

What is a responsive theme Shopify? ›

Responsive is the best-reviewed Shopify theme ever, a technically robust and flexible theme that looks sharp across devices and suits a wide range of product and industry types.

Is Shopify store mobile friendly? ›

Does Shopify provide a mobile app for Android and iOS users? Yes, Shopify provides a mobile app for both Android and iOS devices. Our mobile app allows you to manage your products, process your orders in a few taps, run marketing campaigns, and follow up with customers all in one place.

How do I make two product pages on Shopify? ›

‍How to add new pages on Shopify
  1. Step 1: Log in to your Shopify dashboard. ‍First things first, let's get into the cockpit. ...
  2. Step 2: Go to Online Store > Pages. ...
  3. Step 3: Click the “Add page” button. ...
  4. Step 4: Title your new page and start adding content. ...
  5. Step 5: Set the page visibility.
11 Nov 2021

What pages do you need on a Shopify store? ›

5 Must-Have Pages Every Shopify Store Needs to Convert More Customers
  • Tell your customer who you are with an about page.
  • An up-to-date privacy policy page.
  • Include a great return policy.
  • An easy way for customers to contact you.
  • Your most frequently asked questions (FAQ's)
  • Final thoughts.
9 Feb 2021

How do I create an advanced custom field? ›

Once you've installed and activated the free version of Advanced Custom Fields from WordPress.org, go to Custom Fields > Add New to create your first Field Group. As the name suggests, a “Field Group” is a group of one or more custom fields that are displayed together in your WordPress dashboard.

What is a custom field? ›

Custom field – refers to the interface and user. It's where you view, input, delete, or change a value in a form on an interface. It's a field in reference to a form, i.e. form field.

How do I use a custom field plugin in WordPress? ›

Simply create a new post or edit an existing one. Go to the custom fields meta box and select your custom field from the drop-down menu and enter its value. Click on the 'Add Custom Field' button to save your changes and then publish or update your post.

How do I get meta field values in Shopify? ›

From your Shopify admin, go to the part of your store where you want to add a Metafield value. For example, a specific product, collection, or customer. Click on the rating metafield, and then enter a value. Click Save.

What are Shopify Metafields? ›

Metafields enable you to customize the functionality and appearance of your Shopify store by letting you save specialized information that isn't usually captured in the Shopify admin. You can use Metafields for internal tracking, or to display specialized information on your online store in a variety of ways.

How do I add infinite options on Shopify? ›

Installing Infinite Options on a 2.0 theme
  1. Starting from your Shopify dashboard, click on Online Store, and then click on Themes.
  2. Click the Customize button on the theme.
  3. Select Products from the dropdown menu in the header and then select a product template. ...
  4. Locate a section for products in the left-hand toolbar.
23 Sept 2022

How do I change my product page theme in Shopify? ›

Shopify Product Page Customization | Complete Tutorial Step By Step

How do I create a product template in Shopify? ›

Tap Templates.
  1. Use the dropdown menu to select a template. Click + Create template.
  2. Give your template a unique name.
  3. Using the dropdown menu, select which existing template you want to base your new template on.
  4. Click Create template.

How do I create a custom product on Shopify without an app? ›

However, the steps are basically the same no matter what theme you're using.
  1. Step 1: Create a new product template. ...
  2. Step 2: Add the code for the form fields you want to use.
  3. Step 3: Customize the Cart page to show your custom product options. ...
  4. Step 4: Customize order confirmation emails. ...
  5. Step 5: Test it out.
22 Mar 2017

How do I add a product dimension in Shopify? ›

Shopify does not have the ability to add dimensions to a product. For anyone who is not running a business through the Shopify platform, it does not know what size box the package will use when shipping. The only thing you can do is to set one single default box for all products to be calculated with.

How do I show related Products on product page Shopify? ›

Thus, you just have to choose the appropriate setting in the Shopify admin and the related products will be displayed automatically. To do that, go to the Customize theme, then go to the Product page, and click on the Product page section in the theme editor. In the list of settings, select Show related products.

How do I display all Products on Shopify? ›

Shopify. How to display all products of a shop
  1. Log into your admin, open the Collections tab and click on the Add a collection button:
  2. Entitle the collection as 'All' and add some custom description if needed in the Collection details section. ...
  3. Set the Conditions for products you want to have listed as 'all'.

How do I make multiple Products on Shopify? ›

Assign a template to multiple products in the Shopify admin
  1. Open Products in your Shopify admin.
  2. Use the checkboxes beside each product to select the products for the template.
  3. Select Edit products.
  4. In the Bulk editor, select Add fields then Template.
  5. Use the new column for Template to adjust each product.
22 Oct 2021

What are examples of customized Products? ›

15 Brand-Customized Products
  • Temporarily Tattooed Nail Decals. ...
  • Customized Bicycle Bell Tunes. ...
  • Webcam-Controlled Gaming Avatars. ...
  • Custom DNA Bracelets. ...
  • Chic Bespoke Boots. ...
  • Eco-Friendly Customized Printers. ...
  • Personalized Social Media Compilations. ...
  • Personalized Sickness-Curing Campaigns.
27 Feb 2014

What are product options? ›

In this case, a product option is a specific type of variation, like Size or Color, and the product variants are the individual choices listed within those options, like Large or Red. Some eCommerce stores use product options to refer exclusively to personalizations that can be made to a product, like custom engraving.

How do I add a custom button on Shopify? ›

Tip
  1. From the Shopify app, tap Store.
  2. In the Sales channel section, tap Buy Button.
  3. Click Create a Buy Button.
  4. Click Collection Buy Button.
  5. Select the collection or, use the search to find the collection. Click Select.
  6. Optional: click Customize. ...
  7. Click Done.
  8. Click Copy code.

How do I list multiple sizes Shopify? ›

Steps:
  1. In the Options section of the Add product page, check This product has options, like size or color.
  2. In Option name, enter a name for the option, for example Size . ...
  3. In Option values, enter each option value in a separate field, for example Small , Medium , Large .

What order are product dimensions listed? ›

When you tell us the dimensions of the box, they need to be in this order, Length x Width x Depth.

How does Shopify determine box size? ›

Package shipment limits are set by the carrier. Girth is the measurement around the middle of the package, and is calculated as 2x width + 2x height. Length is measured on the longest side of the package.

Videos

1. Shopify 2.0 Templates Tutorial - Create Different Layouts for Product Pages & Collection Pages
(Ed Codes - Shopify Tutorials)
2. Watch me build the Perfect Shopify Product Page| Using Shopify Online Store 2.0 & Shopify Metafields
(Rihab Seb - eCommerce Coach)
3. WooCommerce Custom Product Loop in Elementor | Design Product Template
(POSIMYTH Innovations - WordPress Tutorials)
4. Create CUSTOM PRODUCT OPTIONS on Shopify 2.0 Dawn Theme - Without the App for FREE
(Andrew from EcomExperts)
5. Product page customization in Spartacus 2.0 | Divante
(Divante)
6. 9 Tips to Optimize Your Product Pages For More Sales (Ecommerce Optimization)
(Learn With Shopify)
Top Articles
Latest Posts
Article information

Author: Melvina Ondricka

Last Updated: 03/08/2023

Views: 5815

Rating: 4.8 / 5 (48 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Melvina Ondricka

Birthday: 2000-12-23

Address: Suite 382 139 Shaniqua Locks, Paulaborough, UT 90498

Phone: +636383657021

Job: Dynamic Government Specialist

Hobby: Kite flying, Watching movies, Knitting, Model building, Reading, Wood carving, Paintball

Introduction: My name is Melvina Ondricka, I am a helpful, fancy, friendly, innocent, outstanding, courageous, thoughtful person who loves writing and wants to share my knowledge and understanding with you.