퍼스트 컨텐츠 몰 구매하기 버튼을 클릭 하면 새창으로 결제 하는 창만 뜨게 할 수 있을까요?
결제창만이 아니면 새창으로 결제 페이지 전체가 뜨게 하려면 어느 부분을 수정해야 하나요?
안녕하세요~^^
상품 클릭 후 구매하기 버튼 클릭 시
주문자 정보 입력 화면을 팝업으로 보고 싶으시다는 말씀이신건가요?
그렇다면 /wp-content/plugins/kboard/skin/first-contents-mall/document.php 파일을 수정해주셔야 합니다.
해당 파일 중 아래의 코드를 찾아서
<form method="post" action="<?php echo $url->set('uid', $content->uid)->set('mod', 'order')->toString()?>">
아래의 코드로 변경,
<form method="post" name="kboard_first_contents_mall_product">
아래 코드를 찾아서
<button type="submit" class="kboard-first-contents-mall-button-order"><?php echo __('Buy It Now', 'kboard')?></button>
아래코드로 변경하여 적용해보시겠어요?
<script type="text/javascript" language="javascript">
function openPop(){
var pop_title = "kboard-first-contents-mall-popup";
window.open("", pop_title, "width=800, height=800, top=100, left=100, toolbar=no, location=no");
var ProductData = document.kboard_first_contents_mall_product;
ProductData.target = pop_title;
ProductData.action = "<?php echo $url->set('uid', $content->uid)->set('mod', 'order')->toString()?>" ;
ProductData.submit();}
</script>
<button onclick="openPop()" class="kboard-first-contents-mall-button-order"><?php echo __('Buy It Now', 'kboard')?></button>
고맙습니다.