Issue in admin-options.php - long categories names prices
Hello,
Just for informations, there is a bug into the admin-options.php.
If your category have a long name, the prices of the second column doesn't display.
I fixed this with that code line 615 :
Before
Code:
<td nowrap style="padding-top:15px;"><?php echo $cat->cat_name; ?>:</td>
After
Code:
<td nowrap style="padding-top:15px; max-width:100px; white-space : normal;"><?php echo $cat->cat_name; ?>:</td>
Now I can enter the price into the form...
That will be great if you implement this correction into the next version....