상품 설명 글자 갯수 컷트
본문
상품 설명에 글자수에서 ... 을 주고 싶은데
관리자에서 글자 갯수옵션이 안보이는것 같아요 ^^;;
list.10.skin.php 에서
수정 소스 부분인데,
if ($this->view_it_basic && $row['it_basic']) {
echo "<div class=\"shop_text\"><a href=\"{$this->href}{$row['it_id']}\">".stripslashes($row['it_basic'])."</a></div>\n";
}
.stripslashes($row['it_basic']). 부분 소스를 밑에소스로 적용 해보려고 했는데 잘안되네요
적용 방법 알려주시면 감사하겠습니다 ^^;
<?php echo cut_str(stripslashes($row$i]['wr_content']), 82); ?>
답변 2
echo "<div class=\"shop_text\"><a href=\"{$this->href}{$row['it_id']}\">".cut_str(stripslashes($row['it_basic']),82)."</a></div>\n";
<?=cut_str(stripslashes($row['it_basic']),82) ?>
답변을 작성하시기 전에 로그인 해주세요.