piribipipi Posted September 11, 2014 Share Posted September 11, 2014 (edited) Hola, quiero eliminar el campo Thumbnails de la pagina de creacion/edicion de categorias, pero no encuentro como... Supuestamente tendria que estar en el archivo AdminCategoriesController.php, en el metodo renderForm(), pero en la definicion de los campos del formulario no aparece, aparecen todos los campos menos thumbnail :S Esto es lo que veo: $this->fields_form = array( 'tinymce' => true, 'legend' => array( 'title' => $this->l('Category'), 'icon' => 'icon-tags' ), 'input' => array( array( 'type' => 'text', 'label' => $this->l('Name'), 'name' => 'name', 'lang' => true, 'required' => true, 'class' => 'copy2friendlyUrl', 'hint' => $this->l('Invalid characters:').' <>;=#{}', ), array( 'type' => 'switch', 'label' => $this->l('Displayed'), 'name' => 'active', 'required' => false, 'is_bool' => true, 'values' => array( array( 'id' => 'active_on', 'value' => 1, 'label' => $this->l('Enabled') ), array( 'id' => 'active_off', 'value' => 0, 'label' => $this->l('Disabled') ) ) ), array( 'type' => 'categories', 'label' => $this->l('Parent category'), 'name' => 'id_parent', 'tree' => array( 'id' => 'categories-tree', 'selected_categories' => $selected_categories, 'disabled_categories' => !Tools::isSubmit('add'.$this->table) ? array($this->_category->id) : null ) ), array( 'type' => 'textarea', 'label' => $this->l('Description'), 'name' => 'description', 'autoload_rte' => true, 'lang' => true, 'hint' => $this->l('Invalid characters:').' <>;=#{}' ), array( 'type' => 'file', 'label' => $this->l('Image'), 'name' => 'image', 'display_image' => true, 'image' => $image_url ? $image_url : false, 'size' => $image_size, 'delete_url' => self::$currentIndex.'&'.$this->identifier.'='.$this->_category->id.'&token='.$this->token.'&deleteImage=1', 'hint' => $this->l('Upload a category logo from your computer.'), ), array( 'type' => 'text', 'label' => $this->l('Meta title'), 'name' => 'meta_title', 'lang' => true, 'hint' => $this->l('Forbidden characters:').' <>;=#{}' ), array( 'type' => 'text', 'label' => $this->l('Meta description'), 'name' => 'meta_description', 'lang' => true, 'hint' => $this->l('Forbidden characters:').' <>;=#{}' ), array( 'type' => 'tags', 'label' => $this->l('Meta keywords'), 'name' => 'meta_keywords', 'lang' => true, 'hint' => $this->l('To add "tags," click in the field, write something, and then press "Enter."').' '.$this->l('Forbidden characters:').' <>;=#{}' ), array( 'type' => 'text', 'label' => $this->l('Friendly URL'), 'name' => 'link_rewrite', 'lang' => true, 'required' => true, 'hint' => $this->l('Only letters, numbers, underscore (_) and the minus (-) character are allowed.') ), array( 'type' => 'group', 'label' => $this->l('Group access'), 'name' => 'groupBox', 'values' => Group::getGroups(Context::getContext()->language->id), 'info_introduction' => $this->l('You now have three default customer groups.'), 'unidentified' => $unidentified_group_information, 'guest' => $guest_group_information, 'customer' => $default_group_information, 'hint' => $this->l('Mark all of the customer groups you;d like to have access to this category.') ) ), 'submit' => array( 'title' => $this->l('Save'), 'name' => 'submitAdd'.$this->table.'AndBackToParent' ) Estoy buscando en el archivo incorrecto??? O se me esta escapando algo??? Gracias!!! Edited September 12, 2014 by piribipipi (see edit history) Link to comment Share on other sites More sharing options...
piribipipi Posted September 11, 2014 Author Share Posted September 11, 2014 Un pequeño detalle, en la creacion de categorias no aparece el campo Thumbnail! pero en la edicion si!!! Link to comment Share on other sites More sharing options...
piribipipi Posted September 11, 2014 Author Share Posted September 11, 2014 Simplemente eliminar el campo, es decir, que cuando entre a editar una categoria, el usuario no vea el campo de thumbnails Link to comment Share on other sites More sharing options...
piribipipi Posted September 11, 2014 Author Share Posted September 11, 2014 @statictic, pero en los campos que muestro en el codigo de arriba no aparece el campo "thumbnail", solo aparece el campo "imagen". Yo "imagen" lo quiero mantener, lo que quiero eliminar es el campo "thumbnail", pero no se donde porque ahi no esta :S Link to comment Share on other sites More sharing options...
piribipipi Posted September 11, 2014 Author Share Posted September 11, 2014 Gracias! me quedo a la espera, ojala y puedas encontrar algo Link to comment Share on other sites More sharing options...
piribipipi Posted September 11, 2014 Author Share Posted September 11, 2014 :S que raro.... pues a ver si puedo encontrar algo yo... Gracias por la ayuda Link to comment Share on other sites More sharing options...
piribipipi Posted September 12, 2014 Author Share Posted September 12, 2014 (edited) Solucionado! ya consegui ocultar lo de los thumbnails!!! Resulta que existe un hook llamado hookDisplayBackOfficeCategory, y en el modulo "blockcategories" hay un .tpl que esta asociado a ese hook!!!! Por lo tanto, la solucion fue desvincular ese modulo del hook "displaybackofficecategory" y ya no se mostro el campo Thumbnails en la edicion de la categoria! Despues de un buennnn rato por fin encontre la solucion jajajaj! Saludos! Edited September 12, 2014 by piribipipi (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts