hello, im using the following on my main page
Code:
<?php if($this_is_home_page)
                { ?>
MAIN PAGE ONLY STUFF HERE
 <?php } ?>
which works great and only displays the text on the main page. But is their a way to use this to only display text if the customer is viewing the product info page.

e.g.
Code:
<?php if($this_is_product_info_page)
                { ?>
MAIN PAGE ONLY STUFF HERE
 <?php } ?>
Basically im having issues with facebook like button not always loading due to facebooks server issues.
When the customer goes though checkout and gets to the checkout sucses page if facebook (or google and twitter) icons fail to load the page doesnt load (or goes white) and no order is tracked!
It only happens rarely but is very very annoying and the above would fix my problem as i can then not load the icons if its not a product page.