Shopify doesn't allow to change the checkout input fields except on Shopify plus plan.
Changing the translation of any already existing input fields in checkout won't help because apps like Fakturoid don't have access to the translation but only to the field name, which stays the same even after changing translation.
Let customers insert VAT number directly in the cart
Using cart attributes in the cart as in the code below will ensure direct rewriting to the order detail and Fakturoid will be able to read the information from there.
You can copy or adjust the HTML code below to use in your theme.
If you'll need some external developer, you can contact [email protected]
<p class="cart-attribute__field"> <label for="ico">IČO</label> <input id="ico" type="text" name="attributes[ico]" value="##########{{ cart.attributes["ico"] }}"></p><p class="cart-attribute__field"> <label for="dic">DIČ</label> <input id="dic" type="text" name="attributes[dic]" value="##########{{ cart.attributes["dic"] }}"></p><p class="cart-attribute__field"> <label for="firma">Firma</label> <input id="firma" type="text" name="attributes[firma]" value="##########{{ cart.attributes["firma"] }}"></p>
Billing information in the order detail will look like this:
Invoice like this will be created: