Monica Posted January 19, 2010 Share Posted January 19, 2010 Salve, vorrei personalizzare nel back office l'inserimento di un nuovo prodotto, togliendo una serie di informazioni superflue per la mia esigenza: 3. Combinazioni 4. Caratteristiche 5. Personalizzazione 6. Sconti 7. Allegati. Ho provato invano ad intervenire sul codice del file adminproducts.php. Ringrazio quanti vorranno aiutarmi. Monica Link to comment Share on other sites More sharing options...
Germanoufo Posted January 19, 2010 Share Posted January 19, 2010 Ciao non è proprio facile fare quella modifica devi per forza di cose farlo ?non puoi semplicemente usare la prima pagina e basta ?Ciao ;-) Link to comment Share on other sites More sharing options...
Monica Posted January 19, 2010 Author Share Posted January 19, 2010 Ehm, diciamo di si. Al pannello accedono vari utenti e meno cose fanno meno danni arrecano! Quindi volevo semplificare il più possibile. Mi sono resa conto che si tratta di una modifica un po' complicata in quanto c'è uno script js "ajax" che rende dinamico il passaggio alle voci di menu... Grazie lo stesso... provo a smanettare un altro pò. Ciao Link to comment Share on other sites More sharing options...
Germanoufo Posted January 19, 2010 Share Posted January 19, 2010 Volendo basta che rimuovi i link dal tabs dove è incluso per non accedere alle schermateCiao ;-) Link to comment Share on other sites More sharing options...
Monica Posted January 19, 2010 Author Share Posted January 19, 2010 Intendi questa porzione di codice?/* Tabs */$this->displayFormInformations($obj, $currency, $languages, $defaultLanguage);$this->displayFormImages($obj, $languages, $defaultLanguage, $token);if ($obj->id)echo ' 3. '.$this->l('Combinations').' 4. '.$this->l('Features').' 5. '.$this->l('Customization').' 6. '.$this->l('Discounts').' 7. '.$this->l('Attachments').' ';echo ' [removed]var toload = new Array();toload[3] = true;toload[4] = true;toload[5] = true;toload[6] = true;toload[7] = true;function loadTab(id) {';Non funziona... Elimino anche tutto fino a "// listing" ma niente... Link to comment Share on other sites More sharing options...
Germanoufo Posted January 19, 2010 Share Posted January 19, 2010 Qualcosa di similare ora non ricordo se c' è 1 o più tabs dovrei controllareCiao ;-) Link to comment Share on other sites More sharing options...
Monica Posted January 19, 2010 Author Share Posted January 19, 2010 Grazie, sei gentile... faccio qualche altro tentativo :-S Link to comment Share on other sites More sharing options...
Monica Posted January 21, 2010 Author Share Posted January 21, 2010 Risolto togliendo dal codice i link alle voci di menu:/* Tabs */$this->displayFormInformations($obj, $currency, $languages, $defaultLanguage);$this->displayFormImages($obj, $languages, $defaultLanguage, $token);if ($obj->id)echo ‘ 3. ‘.$this->l(‘Combinations’).’ 4. ‘.$this->l(‘Features’).’ 5. ‘.$this->l(‘Customization’).’ 6. ‘.$this->l(‘Discounts’).’ 7. ‘.$this->l(‘Attachments’).’’;echo ‘ [removed]var toload = new Array();toload3 = true;toload4 = true;toload5 = true;toload6 = true;toload7 = true;function loadTab(id) {’;Diventando così:/* Tabs */$this->displayFormInformations($obj, $currency, $languages, $defaultLanguage);$this->displayFormImages($obj, $languages, $defaultLanguage, $token);if ($obj->id)echo ‘ ‘.$this->l(‘’).’ ‘.$this->l(‘’).’ ‘.$this->l(‘’).’ ‘.$this->l(‘’).’ ‘.$this->l(‘’).’’;echo ‘ [removed]var toload = new Array();toload3 = true;toload4 = true;toload5 = true;toload6 = true;toload7 = true;function loadTab(id) {’;Grazie a tutti ed in particolare a Germanoufo Link to comment Share on other sites More sharing options...
Germanoufo Posted January 21, 2010 Share Posted January 21, 2010 Grazie a tutti ed in particolare a Germanoufo Prego in questo modo nonhai problemi di nullaper postare porzoni di codice usa il tag code che così rimane intatto ed evidenziato Ciao ;-) 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