Post by dracoimports » Fri Jan 09, 2015 2:49 am

Hi everyone,

I am very new to all this but so far I have been doing okay I think......

I am running Opencart Version 2.0.1.1

My technical knowledge as far as coding etc is practically zero but I can follow directions extremely well.

Anyway, I have a question about a Sort Order column on the Admin side. It is in the Options section and the problem I am having is the entry box only shows one digit at a time. As an example if I put the sort order as 10, 20, 30, they will all only show the last digit I am typing, which in this case is 0, until I click away in which case it is only showing 1, 2, 3 etc.

Another example is if I were to put them as 310, 320, 330 etc, as I am typing it will only show 0 as the last digit on all of them, until I click somewhere else in which case they will all appear as 3.

I was wondering if there was a way to make that box larger so that 4 or 5 digits are displayed at once? I have included a picture to show which box I am refferring to.

Image

Newbie

Posts

Joined
Mon Jan 05, 2015 12:25 pm

Post by keram.in » Mon Jan 19, 2015 5:42 am

Hi,

Go to:
/admin/view/template/catalog

Open with text editor:
option_form.tpl

Find lines:
<thead>
<tr>
<td class="text-left required"><?php echo $entry_option_value; ?></td>
<td class="text-left"><?php echo $entry_image; ?></td>
<td class="text-right"><?php echo $entry_sort_order; ?></td>
<td></td>
</tr>
</thead>

Change it to:
<thead>
<tr>
<td class="text-left required"><?php echo $entry_option_value; ?></td>
<td class="text-left"><?php echo $entry_image; ?></td>
<td class="text-right" width="70px"><?php echo $entry_sort_order; ?></td>
<td></td>
</tr>
</thead>

Save and upload.

You can change it to whatever pixels you want, 70 is my choice.

Newbie

Posts

Joined
Mon Jan 19, 2015 5:31 am

Post by dracoimports » Mon Jan 19, 2015 4:07 pm

THANK YOU SO SO MUCH!

I'd been giving up hope that anyone would respond, that was so simple!

Thank you so so much. Can't tell you how grateful I am. You made my life that much easier now!

Newbie

Posts

Joined
Mon Jan 05, 2015 12:25 pm
Who is online

Users browsing this forum: No registered users and 3 guests