Quote:
Originally Posted by carpeperdiem
This is exactly what I was trying to do (and it really should be stock, don't you agree? What customer would not want to see the color and/or size variant of the item they are buying?
|
Yes, it should be stock.
Quote:
NOW -- can I ask HOW did you find out all the array index fields?
|
In this case it was easy. You posted it in your original post. Look at the second, third and fourth lines of the original X-Cart code you posted. For some strange reason X-Cart puts the options in the link title but doesn't display them.
Quote:
Is there a master directory of what x-cart is keeping track of?
Can you point me somewhere so that I can learn more about what is under the hood?
|
There is no directory. But you can add this to the top of any template to see what variables are available:
Code:
{php}func_print_r($this->_tpl_vars);{/php}
I wish there was a good reference to what's under the hood but I don't know of any. Its usually a lot of grunt work chasing code to find out how something works and where to put changes.