Other template-ish related things that need to be tidied up include the Email addresses used in Cart.pm and Order.pm - the addresses used should be in the YamsGlobals.pm file and used as the variable. (it would help).
Another help would be if all common images (and alt text for each) were defined in one place, such as the YamsGlobals.pm file, so the Template.pm, Cart.pm and Order.pm files could call the global variables.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When this is done, be sure to include the Order.pm and Cart.pm files. There are a lot of instances of:
if($template)
{
print \"</TD></TR>\\n\\n $template_foot\";
}
and similar that I have to convert to:
if($template)
{
print \"\\n\\n $template_foot\";
}
in order for my template to display correctly in the order and cart areas.
Other template-ish related things that need to be tidied up include the Email addresses used in Cart.pm and Order.pm - the addresses used should be in the YamsGlobals.pm file and used as the variable. (it would help).
Another help would be if all common images (and alt text for each) were defined in one place, such as the YamsGlobals.pm file, so the Template.pm, Cart.pm and Order.pm files could call the global variables.