I'd like to set up the minimum size of the description in add.html form - hwo can I do that ? The only what I found is count_characters in Smarty.
Is there any SVN or Mod for it ?
I'd like to set up the minimum size of the description in add.html form - hwo can I do that ? The only what I found is count_characters in Smarty.
Is there any SVN or Mod for it ?
www.zgred.pl | www.linksor.com | www.multiportal.pl | www.szukaj24.pl | www.sidlink.com | www.pirlo.pl - all ON IU 5.4.x
You could always add javascript to the form
For minimum character try this code
Let me know if you have an error.Code:on add.php find elseif (empty($description)) $error_msg = $msg["10103"]; Then replace with elseif (empty($description)) $error_msg = $msg["10103"]; elseif (strlen($description) < 500) $error_msg = "Description short,minimum is 500 characters";
LTFBWY
It works ! BTW: I hate javascripts :P
www.zgred.pl | www.linksor.com | www.multiportal.pl | www.szukaj24.pl | www.sidlink.com | www.pirlo.pl - all ON IU 5.4.x
Glad the code work,by the way what the mean LTFBWY?
Let The Force Be With You![]()
www.zgred.pl | www.linksor.com | www.multiportal.pl | www.szukaj24.pl | www.sidlink.com | www.pirlo.pl - all ON IU 5.4.x