If you want to hide the categories that is disabled for a user you have to do the following:
You must find the page http://yoursite/components/com_k2/views/item/tmpl/form.php
and replace
if(window.ie){
var disabledOptions=$$(‘#catid option[disabled]‘);
$each(disabledOptions, function(option){
option.setStyle(‘height’, ’0px’);
});
}
with this code…
Σε πολλές περιπτώσεις κάνουμε select στην βάση μας στην MySQL και παίρνουμε αποτελέσματα μη επιθυμητά όπως ερωτηματικά ????????????
Θα πρέπει στον κώδικά μας στην php να βάλουμε το mysql_query(“SET NAMES ‘utf8′”, $link);
Παράδειγμα
<html> <head> ... <meta http-equiv="Content-Type" content="text/html; charset=utf-8" …