Impact Theme - Contact form Text modifications

Topic summary

A user wants to customize text labels in a contact form on their Shopify store’s wholesale registration page. Specifically, they need to change “Name” to “Full Name” and the “Send” button to “Send application.”

Key constraint: The store has multiple contact forms, so changing the default theme content would affect all forms site-wide.

Solutions proposed:

  • Initial suggestion: Edit labels through Store Admin > Online Store > Themes > Edit default theme content (rejected due to affecting all forms)
  • Recommended approach: Create a custom contact form using Liquid/HTML code that allows independent label customization

Current status: A developer provided complete custom form code that can be added as a new section in the theme. This allows the wholesale form to have unique labels without impacting other contact forms. The user requested guidance on implementation but hasn’t confirmed whether they proceeded with the code solution.

Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

Hi everyone,

I created a new page on my website for retailers to send us a contact form.

https://nobaanimal.com/pages/registration-wholesale-account

I would love to change the defaut text in the contact widget. I can add some box, but the NAME, Email and Send Button i don’t seem to be able to change directly?!

Is there a simple way to change : Name to - Full Name and the Send Button to - Send application.

Thanks a lot for your help and wisdom !

2 Likes

@GabrielNoba You can do that from your store admin > Online Store > Themes > in the current theme, click “…” > Edit default theme content

check if you have an option for contact page and check options in it

Hi @GabrielNoba ,

Are you using any app to create this form or you have used custom liquid?

Hi there, thanks for the quick response.
I can change it from here, yes, but I have another contact form on my website that uses those field. Is there a way to change it but specifically on just one form ?

Thanks

Hello,

On Impact theme, onlu uses the Online Store - Themes - Customize and then on my template added a contact form (the normal one that is with the theme).

@GabrielNoba - do you have code for the other form? you can change label code directly from liquid code files.

Okay so there is a way to edit the field labels without editing the default theme content.

You have to add the form using liquid and html by going to your theme code and you can easily change whatever label you want.

Just let me know if you are comfortable with coding and can edith the theme code, I can share the code with you.

If not, you can give me a access to your store and I will add it for you right now.

I could go and add it in if you provide the path to go (the right liquid page to modify) that would help a lot !

I will be glad to provide you with the assistance but currently I need access to your store in order to see the file structure and guide you accordingly so that the code will work properly.

Can you give me collaborator access to your store?

If not, no problem but it will be difficult for me to guide you without seeing the theme

Please try to add the following code by creating new section in your theme and copy paste this code and click save. Open your theme customizer and then add this section anywhere in your theme.


{%- form 'contact' -%}
  
    {% if form.posted_successfully? %}
      

        

Thanks for contacting us! We'll get back to you soon.

      

    {% endif %}

    {% if form.errors %}
      
        

Please correct the following:

        {{ form.errors | default_errors }}
      

    {% endif %}

    
      

        
      

      
        
      

    

    
      
    

    
      
    

    
      
    

    
      
    

    
  

{%- endform -%}

{% schema %}
  {
    "name": "Custom registration form",
    "settings": [],
    "presets": [
      {
        "name": "custom registration form"
      }
    ]
  }
{% endschema %}