New modules

Posted in: Newspaper
Post count: 21

Hello,

I wanna created some new modules showing the author of some post and Theo staff. Is it necessary to change some database or it is enough wifht a new file like on page templates?

Otherwise, how can I select a specicif page or category page?

Thanks

Post count: 3343

Hi,
In each module we have the author but the code is commented, if you want to show the author you need only to un-comment that line: http://screencast.com/t/3wolMa9a5LU

To create a new module is a little complicated if you do’t have programing knowledge.

Hope this help!
Thanks for the message!

Post count: 21

Hellos

I have some programing knowledge but I saw it and i uncoment it. I want also on some post show the short description. What is the function to get that information?

Thanks

Post count: 3343

Hi,
You find it in modules, the excerpt http://screencast.com/t/BsGxTOst8h

Post count: 21

Hi Marius,

The problem is that i want to show the subtitle, the text which is polace under the post on a single post page.

Thanks.

Post count: 21

I wanted to show the td_subtitle

Post count: 3343

Hi,
You can use this code:

<?php $td_subtitle_module = get_post_meta($this->post->ID, 'td_post_theme_settings', true);  ?>
            <p class="td-sub-title"><?php  if(!empty($td_subtitle_module['td_subtitle'])){echo $td_subtitle_module['td_subtitle'];} ?></p>

in each module like here: http://screencast.com/t/19exTMXCGCgR

Thanks!

Post count: 21

Thanks

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