Ciao a tutti,
ho da poco risolto un problema ed ecco ne incontro un altro...
Ho il file in oggetto, per intenderci quello del "Cambia indirizzo di spedizione" che non vuole proprio dimensionarsi... Ho provato anche ad inserire i valori manualmente ma nada...
Credo che il problema sia dovuto al fatto che esso richiama altri file, probabilmente manca il dimensionamento adatto in quei file ma non sono riuscito a capire quali.
Grazie a chiunque mi aiuterà.
checkout_payment_address.php non vuole dimensionarsi ?!?
Moderatore: mod Generali
Scusa ma in quel file ho trovato solo text area field, ed eccone il contenutolobotomia ha scritto:se non erro bisogna modificare in includes/functions/html_outptu.php la funzione textareadraw o qualcosa del genere, non ricordo precison perchè non sono andato a vedere il file, ma la funzione è quella
vedi quindi dove è chiamata nel checkout e modifica
Codice: Seleziona tutto
// Output a form textarea field
function tep_draw_textarea_field($name, $wrap, $width, $height, $text = '', $parameters = '', $reinsert_value = true) {
$field = '<textarea name="' . tep_output_string($name) . '" wrap="' . tep_output_string($wrap) . '" cols="' . tep_output_string($width) . '" rows="' . tep_output_string($height) . '"';
if (tep_not_null($parameters)) $field .= ' ' . $parameters;
$field .= '>';
if ( (isset($GLOBALS[$name])) && ($reinsert_value == true) ) {
$field .= stripslashes($GLOBALS[$name]);
} elseif (tep_not_null($text)) {
$field .= $text;
}
$field .= '</textarea>';
return $field;
}
////
// Output a form hidden field
function tep_draw_hidden_field($name, $value = '', $parameters = '') {
$field = '<input type="hidden" name="' . tep_output_string($name) . '"';
if (tep_not_null($value)) {
$field .= ' value="' . tep_output_string($value) . '"';
} elseif (isset($GLOBALS[$name])) {
$field .= ' value="' . tep_output_string(stripslashes($GLOBALS[$name])) . '"';
}
if (tep_not_null($parameters)) $field .= ' ' . $parameters;
$field .= '>';
return $field;
}
////
Grazie
boom