컨텐츠몰 스킨에서 본인이 올린 자료도 구매하기 버튼이 생성이 되는데
구매하지 않고도 첨부된 파일을 다운로드 가능하게 할 수 있을까요?
본인인 경우에 첨부파일 다운로드 버튼이 노출되도록 했는데...
아마도 구매해야만 order_item_id 가 생성되기 때문에 다운로드 권한이 없다고 나오는 것 같습니다.
<div class="kboard-list-info-row info-download">
<?php foreach($content->attach as $key=>$attach):?>
<button type="button" class="kboard-first-contents-mall-button-action" onclick="window.open('<?php echo $url->getDownloadURLWithAttachAndOderItemID($content->uid, $key, kboard_first_contents_mall_is_buy_item_id())?>')" title="<?php echo sprintf(__('Download %s', 'kboard'), $attach[1])?>"><i class="fas fa-download"></i> <?php echo $attach[1]?></button>
<?php endforeach?>
</div>
다른 방법이 없을까요?
잘 해결됐습니다! 감사합니다~
안녕하세요~^^
KBoard 퍼스트 콘텐츠몰 스킨 제품 상세 페이지에서
본인이 올린 상품이라면 구매하기 버튼 대신 첨부파일이 표시되게 하시려면
수정하신 코드는 이전의 상태도 되돌려보세요.
kboard_first_contents_mall_is_downloadable 필터를 활용해서
현재 사용자가 게시글 작성자인지 체크해서 첨부파일이 표시되게 하실 수 있습니다.
아래의 코드를 활용해보시겠어요?
add_filter('kboard_first_contents_mall_is_downloadable', 'kboard_first_contents_mall_is_downloadable_20201123', 10, 2);
function kboard_first_contents_mall_is_downloadable_20201123($is_downloadable, $item){
$content_uid = kboard_uid();
$content = new KBContent();
$content->initWithUID($content_uid);
if($content->member_uid == get_current_user_id()){
$is_downloadable = true;
}
return $is_downloadable;
}
테마의 functions.php 파일에 코드를 추가하거나 Code Snippets 플러그인을 사용해서 코드를 추가할 수 있습니다.
고맙습니다.