Got the ansewer myself:
If not product page:
<?php if ('wpsc-product' != get_post_type()) { ?>
do stuff
<?php }?>
If product page:
<?php if ('wpsc-product' == get_post_type()) { ?>
do stuff
<?php }?>
Got the ansewer myself:
If not product page:
<?php if ('wpsc-product' != get_post_type()) { ?>
do stuff
<?php }?>
If product page:
<?php if ('wpsc-product' == get_post_type()) { ?>
do stuff
<?php }?>