Thanks for your response!
If I´ve understand it right it´s this part of code in caracteristic.php that makes the table för the dropdown-menu.
But I can´t see where the first table-cell(td) with the product-Id are or there the specific DD-menu are.
<table class="hikashop_product_characteristics_table">';
foreach($this->characteristics as $characteristic){
$main_html.='<tr>';
$values = array();
if(!empty($characteristic->values)){
foreach($characteristic->values as $k => $value){
$values[$k]=$value->characteristic_value;
}
}
$html=$this->display($characteristic->characteristic_id,@$characteristic->default->characteristic_id,$values,$params->get('characteristic_display'));
if($params->get('characteristic_display_text')){
$html=$characteristic->characteristic_value.'</td><td>'.$html;
}
$main_html.='<td>'.$html.'</td></tr>';
}
$main_html.='</table>';
I would lika too changes the code that it would´t write the product-Id and instead write a static word like "Välj...".
<div id="hikashop_product_characteristics" class="hikashop_product_characteristics"><table class="hikashop_product_characteristics_table"><tr><td>T 1239 - T 1241 Pop</td><td><select id="hikashop_product_characteristic_250" name="hikashop_product_characteristic[250]" class="inputbox" size="1" onchange="return hikashopUpdateVariant(this);">
<option value="265">Prisma Burnout</option>
<option value="266">Drop Burnout</option>
<option value="267">Orkidé Burnout</option>
<option value="268">Glänta</option>
<option value="269">Maskros </option>
<option value="270">Zebra</option>
<option value="271">Offwhite Siden</option>
<option value="272">Svart Siden</option>
<option value="273">Röd Siden</option>
<option value="274">Plommon Siden </option>
<option value="275">Mörkbrun Siden</option>
<option value="276" selected="selected">Äppelgrön Siden</option>
</select>
</td></tr></table>
It´s the text T 1239 - T 1241 Pop in
code above I want too changes to a static word.
I update the image what text I exactly want to change.
Products>Characteristics and change its name can´t I see how that will solve my problem...
/ Micke