Hi,

I would like to add some code that would cause some text to appear after the product description. The code needs to check if a user is logged in and then if logged in, check which country their billing address is in. Depending upon their country, different HTML would be displayed.

The code would look like this:

if (logged in) {
if (billing_country == australia) {
echo blah1;
} elsif (billing_country == USA) {
echo blah2;
}
}

etc.
What is the best way to do this? Its just on the product info page template.

Thanks in advance.