This is happening in the View Source and is what is wrong ...
Code:
<div class="wrapperAttribsOptions">
<h4 class="optionName back"><label class="attribsInput" for="attrib-3-">Personalization</label></h4>
<div class="back">
The attrib-3 should be an attrib-3-0 but that isn't happening ...
Can you look in the products_options_values table via phpMyAdmin ...
Do you see an entry for:
Code:
products_options_values_id language_id products_options_values_name products_options_values_sort_order
0 1 TEXT 0
If not, that is the problem and you need to add that to the table:
Code:
INSERT INTO products_options_values (products_options_values_id, language_id, products_options_values_name) VALUES (0, 1, 'TEXT');