1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?php skin_module_show("footer",$sample_idx); // 하단 스킨을 불러온다.
include("{$j3_path}/footer.sub.php");
/*echo "<textarea>"; echo $configshop['ob_script']; echo "</textarea>";*/ ?> <script> $(function(){ $(".sct_cost").each(function(){ // 전화문의 상품 처리 $obj = $(this); $v = $(this).html(); if($v.indexOf("전화문의")>=0 || $v.indexOf("<?php echo $configshop['gust_price_text'];?>")>=0){ $obj_span = $obj.find("span"); $idx = 0; $obj_span.each(function(){ if($(this).html()=='원'){ $obj.find("span").eq($idx).remove(); } $idx++; }); if($(this).find("strike").length>0 && '<?php echo $cust_price_view;?>'!='Y'){ $(this).find("strike").remove(); } if($(this).find("a").length>0){ $obj.find("a").removeAttr("href"); } } $(this).html($obj.html()); }); setTimeout(function(){ <?php echo $configshop['ob_script'];?> },300); <?php if($app_id=='lulucosmetic'){?> $(".member_only_btn").click(function(){ setsave("mem_rtn_url","<?php echo $_SERVER['REQUEST_URI'];?>",1); document.location.href='./register_form.php'; }); <?php }?> }); </script> <style> <?php if($config['join_biz_type']=='9'){ // 회원가입 중단시 회원가입 버튼 제거?> .intro_join_class, .hdgnb_join_class { display:none !important;} <?php }?> <?php if($configshop['kyongsang241_mode']=='1'){ // 영산메디컬용 모드 ?> .customer_coupon_class, .customer_edit_class, .mem_out_class { display:none !important;} <?php }?> </style>
|