구매하기 링크
본문
영카트 item.php에서 주문상품 선택하고 구매하기 클릭하면 orderform.php로 이동이 되는데..
orderform1.php(제가 만든 본사복입니다.) 로 이동하게 하려면 어디를 건드려야 하나요...?
답변 1
/shop/cartupdate.php 의 하단에 있습니다.
if ($sw_direct)
{
if ($is_member)
{
goto_url(G5_SHOP_URL."/orderform.php?sw_direct=$sw_direct");
}
else
{
goto_url(G5_BBS_URL."/login.php?url=".urlencode(G5_SHOP_URL."/orderform.php?sw_direct=$sw_direct"));
}
}
else
{
goto_url(G5_SHOP_URL.'/cart.php');
}
답변을 작성하시기 전에 로그인 해주세요.