배송지목록 테마에서 지정할 수 있도록 수정
This commit is contained in:
@ -1,10 +1,18 @@
|
||||
<?php
|
||||
include_once('./_common.php');
|
||||
|
||||
// 테마에 orderaddress.php 있으면 include
|
||||
if(defined('G5_THEME_MSHOP_PATH')) {
|
||||
$theme_orderaddress_file = G5_THEME_MSHOP_PATH.'/orderaddress.php';
|
||||
if(is_file($theme_orderaddress_file)) {
|
||||
include_once($theme_orderaddress_file);
|
||||
return;
|
||||
unset($theme_orderaddress_file);
|
||||
}
|
||||
}
|
||||
|
||||
$g5['title'] = '배송지 목록';
|
||||
include_once(G5_PATH.'/head.sub.php');
|
||||
|
||||
$order_action_url = G5_HTTPS_SHOP_URL.'/orderaddressupdate.php';
|
||||
?>
|
||||
|
||||
<form name="forderaddress" method="post" action="<?php echo $order_action_url; ?>" autocomplete="off">
|
||||
|
||||
Reference in New Issue
Block a user