Author Topic: Changing The shop Template to show changed Max Credits  (Read 2362 times)

Offline Deadfire

Changing The shop Template to show changed Max Credits
« on: June 23, 2007, 07:17:41 am »
Yo all, I looked around for the answer to this and it seems to be be asked yet, oh well you all seem to be a helpful bunch so I'll ask my question and see where I get.

I have recently changed the values of my credit system to (15,0) from the (9,2) default. Now however the size of the text boxes are far to small to even see a value that big. I have little to no experience with Templating with SMF

Any help would be nice Thanks! 

Offline Daniel15

Re: Changing The shop Template to show changed Max Credits
« Reply #1 on: June 23, 2007, 10:57:53 am »
Take a look at Themes/default/Shop.template.php and Themes/default/ShopAdmin.template.php - Those files contain all the templates used by SMFShop.

I'm guessing you know basic HTML? The text boxes are similar to this (this one is from the "Send Money to Someone" template):
Code: [Select]
<input type="text" name="amount" id="amount" size="8" />
You simply need to change the size to a larger number :)

Hope this helps you!