JulianW Posted July 20, 2017 Share Posted July 20, 2017 Hi Forum, I'm having trouble editing product names that had invalid characters from a migration i.e "Product #2" When i removed the specific character i am still presented with the message "Property Product->name is not valid" any ideas how to navigate around this? thanks Link to comment Share on other sites More sharing options...
bestcoding.net Posted July 20, 2017 Share Posted July 20, 2017 You can remove validation for this field. In file /classes/Product.php change definition of `name` field: ... 'name' => array('type' => self::TYPE_STRING, 'lang' => true, /*'validate' => 'isCatalogName',*/ 'required' => true, 'size' => 128), ... 2 1 Link to comment Share on other sites More sharing options...
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