Me too facing the same issue. I am using drupal 6.2. I have given the default front page as node. Then i did the posting which is appreaing as a teaser. I want the full post to appear in the front page.
My node.tpl as below.
phptemplate_comment_wrapper(NULL, $node->type);
print $node->nid; " class="node if ($sticky) { print ' sticky'; } if (!$status) { print ' node-unpublished'; } if ($page == 0) { print ' teaser'; } "> print $picture if ($page == 0):
An easy solution I found that seems to work is placing the "<!--break-->" at the very end of your post. When I did this the "read more" link just doesn't appear. No hacking necessary.
Comments
Edit the node.tpl.php
Edit the node.tpl.php
remove Read more link
Thank u for the reply, but i am afraid that did not work...
my node.tpl.php file contains the following content--
if ($sticky) { print " sticky"; }
if (!$status) { print " node-unpublished"; }">if ($page == 0) {print $node_url">
print $title};print $submittedprint $termsprint $contentif ($links) {print $links};-->
I edited the contents of the
as u said, but did not work
could u please help me?
I am using drupal 5.0
Thank u in advance
Regards,
Sundar
In node.module there there
In node.module there there is a function node_link(), which provides the read more link.
hope this you actually needs
krishna
remove Read more link
Sorry for the improper posting of the code... i forgot to use the code tag... I apologise again.
By the way, my problem is solved....
Thanks to Mr. krishna whose suggestion worked fine...
Thanks to all who tried to help me on this.
I will keep in touch with u all.
Thanks again.
Regards,
Sundar
hi all Me too facing the
hi all
Me too facing the same issue. I am using drupal 6.2. I have given the default front page as node. Then i did the posting which is appreaing as a teaser. I want the full post to appear in the front page.
My node.tpl as below.
phptemplate_comment_wrapper(NULL, $node->type);if ($sticky) { print ' sticky'; }if (!$status) { print ' node-unpublished'; }if ($page == 0) { print ' teaser'; }">print $pictureif ($page == 0):print $node_url " title="
print $title">print $titleendif;if ($submitted):print t('!date — !username', array('!username' => theme('username', $node), '!date' => format_date($node->created)));endif;print $contentif ($taxonomy):print $termsendif;if ($links):print $links;endif;Please help how to edit it.
An easy solution I found
An easy solution I found that seems to work is placing the "
<!--break-->" at the very end of your post. When I did this the "read more" link just doesn't appear. No hacking necessary.An easy solution I found
Thanks - ackologic, its really working. I also use the "
" after my post then it appear full post.