i was able to get it working by creating a page template.
Here’s the code i used. Hope it helps.
<?php
$args = array(
'offset' => 0,
'orderby' => 'post_date',
'post_type' => 'cctor_coupon',
'post_mime_type' => '',
'post_parent' => '',
'post_status' => 'publish');
$arrPost = get_posts( $args );
if(!empty($arrPost))
{
foreach ($arrPost as $testi)
{
echo do_shortcode( '[coupon couponid="'.$testi->ID.'" coupon_align="cctor_alignleft" name="'.$testi->post_title.'"]' );
}
} ?>