문제

Is it possible to show only the whole node when clicking on "Preview", not also the teaser?

도움이 되었습니까?

해결책

You can override theme_node_preview in your theme, to remove the code related to $preview_trimmed_version. More specifically, add the following code to the template.php file in your theme.

function phptemplate_node_preview($node) {
  $output = '<div class="preview">';
  $output .= node_view($node, 0, FALSE, 0);
  $output .= "</div>\n";
  return $output;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top