empressia1 Posted May 16, 2016 Share Posted May 16, 2016 Jak usunąć sprawdzanie znaków specjalnych w cechach produktu. Produkty które wstawiam mają cechy ze znakami = i #. Gdzie znaleźć walidację za to odpowiedzialną i ją usunąć? Link to comment Share on other sites More sharing options...
0 e_com Posted May 16, 2016 Share Posted May 16, 2016 Do katalogu: override/classes/dodaj plik: FeatureValue.phpz zawartością: <?php class FeatureValue extends FeatureValueCore { public static $definition = array( 'table' => 'feature_value', 'primary' => 'id_feature_value', 'multilang' => true, 'fields' => array( 'id_feature' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true), 'custom' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), /* Lang fields */ 'value' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isAnything', 'required' => true, 'size' => 255), ), ); } Skasuj: cache/class_index.php 1 Link to comment Share on other sites More sharing options...
Question
empressia1
Jak usunąć sprawdzanie znaków specjalnych w cechach produktu. Produkty które wstawiam mają cechy ze znakami = i #. Gdzie znaleźć walidację za to odpowiedzialną i ją usunąć?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now