- MSAnsweredHello,
Phone on shop setting is just a text field, you can type as you need.
Thank you - JUAnsweredIt shows only two phone numbers in my shop page.
https://sma.psatomnerb.com/
These are my three numbers
096 888-8182 | 076 777-7472 | 071 999-9690
After I click update it show only this in the shop setting page too 096 888-8182 | 076 777-7472 | - MSAnsweredHello,
Yes, max field length is 30. You can modify the `phone` column in `sma_shop_settings` table in you database.
```sql
ALTER TABLE `sma_shop_settings` CHANGE `phone` `phone` varchar(55) NULL;
```
Thank you - Login to Reply