Simular Articles on custom post type?

Posted in: Newspaper
Post count: 13

Hi,

How can i avoid showing the Simular Articles on custom post types other than NewsPaper Theme defined onces?

This defined in Post Settings -> Simular Article -> Show Simular Article yes/no.

I have installed Easy Digital Downloads and the detail page (post-type ‘download’) it also shows the Simular Articles.

Thanks in advance!

Marcellino

Post count: 6600

Hi,

You have to edit the template for your custom post type and remove this line: http://screencast.com/t/NhwG5BtXoqkF

Thanks

Post count: 13

Lucian,

I solved it by using a if not statement:

<?php if ( !is_singular( 'download' ) ) {
   echo $td_mod_single->related_posts();
}
?>

Thankx

Post count: 6600

Glad you managed to solve it!
Thanks for the message!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.