Jump to content

Risolto. Eliminazione voci nel back office


Monica

Recommended Posts

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

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

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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...