-
Is there an efficient way for adding colour options to a specific list? In our case, we are trying to list four colours for bedsheets, pillowcases and duvet covers. The other products (books, soap etc), are available in one colour only (other items may have different colourways in the future).
Will adding a global system change mean that every product is suddenly available in four colour, or will products only show multi-colour options if they are added via admin?
As there are hundreds of products to add, it's be useful to know this before tearing up the global settings!!!
-
You need to add the Attributes to each Product ...
However, there is a Copier on the Attributes Controller to allow you to setup the Attributes on 1 Product and then copy them to another Product or Category of Products ... :)
NOTE: Always backup your database before attempting new things of a global nature that you are unfamiliar with ... as in ... Going to do something you have never done before? Backup! Backup! Backup! ... B)
-
Linda
Quick question, is there a maximum value for attributes on a product? I have 9 for one particular product !! and it will only show 7?
tks
-
Nope ... no limits that I have ever run into ...
You should be able to add all the Option Values to an Option Name that you need ... :)
-
No its not the option values, the attributes are text so no values, they are showing in the attribute controller fine but just not on the website, come to think of it maybe it's a template issue? that the template is set to only show a max nr of lines or something for the attributes? Any idea where in the template files I cld check this?
rgds
-
ok forgive me appears to be working now for some reason ! don't know why didn't before ! but sorted now tks
-
Thanks for letting us know you are back up and humming along ... :)
-
Linda, I am back with another question here. Is it possible to wrap HTML table rows around each option value when you display it on the page? If so where will I add this code?
-
Maybe I shoul explain It like this. Would it be possible to display the attributes in table like this.
Code:
<table width="329" border="1">
<tr>
<th scope="col"><span class="style1">Option Name </span></th>
<th scope="col"><span class="style1">Desc 1 </span></th>
<th scope="col"><span class="style1">Desc 2 </span></th>
</tr>
<tr>
<th scope="col"><span class="style1">
<input name="radiobutton" type="radio" value="radiobutton" />
A </span></th>
<th scope="col"><span class="style1">12 Months </span></th>
<th scope="col"><span class="style1">£20</span></th>
</tr>
<tr>
<td><center class="style2">
<strong>
<input name="radiobutton" type="radio" value="radiobutton" />
B </strong>
</center> </td>
<td><center class="style2">
<strong> 18 Months </strong>
</center> </td>
<td><center class="style2">
<strong> £25 </strong>
</center></td>
</tr>
</table>
Instead of Like this;
Code:
<table width="329" border="1">
<tr>
<th scope="col"><span class="style1">Option Name </span></th>
</tr>
<tr>
<th scope="col"><div align="left"><span class="style1">
<input name="radiobutton" type="radio" value="radiobutton" />
A </span><span class="style1">12 Months </span><span class="style1">£20</span></div></th>
</tr>
<tr>
<td> <div align="left"><strong>
<input name="radiobutton" type="radio" value="radiobutton" />
B </strong><strong>18 Months </strong><strong>£25 </strong>
</div>
<center class="style2">
</center> </td>
</tr>
</table>
Visually I just think that It would have a better inpact espetially since we have over 20 options per product.
-
Can anyone think of an Excel formula, or some other way, of getting a list of products in the form:
Hat, small
Hat, medium
Hat, large
into the forum
hat, small, medium, large
and then importing it? We've been given a new list, and it would look far better to have each product with attributes, rather than zillions of single products, but I can't figure it out!