Search found 26 matches

Search found 26 matches

tips to avoid vQmod conflicts

Opencart provides the extension and module mechanism for customization. However, it does not support the way of hooking some events. It is mandatory to use vQmod if we want to inject our own custom codes considering opencart core version updates. vQmod is quite good, but sometimes it could cause con...

Jump to post
  • Tue Feb 12, 2013 1:06 am
  • Replies 0
  • Views 616
Re: 골 때리는 vqmod 에 xml 파일 OC 코어로 변환하기

오픈카트는 확장(extension)과 모듈(module)을 메커니즘을 제공하지만 특정 이벤트를 후킹할 수 있는 방법을 특별히 제공하지 않기 때문에 향후 업데이트를 고려하면 vQmod를 사용할 수 밖에 없습니다. vQmod의 가장 큰 위험은 하나의 파일을 여러 xml 파일에서 접근 수정할 때입니다. 이 때는 이를 하나로 몰아서 처리해주는 것이 좋습니다만 어쩔 수 없이 나눠서 관리해야할 수도 있구요. 이렇게 여러 개의 xml 파일에서 접근하는 오픈카트 코어 소스 파일을 알고 싶다면 vqmod/xml 디렉토리 안에서 다음과 같이 명령하면...

Jump to post
  • Tue Feb 12, 2013 12:52 am
  • Replies 1
  • Views 5690
Re: Error: Could not load language catalog/optc!

글 쓴 날짜가 1월 18일이면 1.5.5.1 업데이트 이전인 것 같은데요.

혹시라도 버전이 1.5.5.1 가장 최신이라면 다음 코드를 확인해보세요.

$this->load->language('catalog/optc'); 1.5.5.1 이전 버전


$this->language->load('catalog/optc); 1.5.5.1 버전


이거 바뀐 거 때문에 오픈카트 커미터인 Daniel이 욕 먹고 있는데요.

근데 1월 18일이면 이 문제가 아닐 것 같기도 하고...

Jump to post
  • Mon Jan 28, 2013 3:10 pm
  • Replies 2
  • Views 9142
email subject utf-8 encoding

Hi, The default language of my cart is not English, but Korean, and the cart version is 1.5.4.1. If the order is complete, the cart sends an email by "system/library/mail.php". If the protocol is "mail", it encodes the subject correctly as follows: if ($this->protocol == 'mail') ...

Jump to post
  • Mon Jan 28, 2013 2:58 pm
  • Replies 5
  • Views 7673
Re: OpenCart 1.5.5 Bug Thread

Hi, google_checkout issue I'm now converting 1.5.4.1 my theme to work on 1.5.5.1. 1.5.4.1 catalog/controller/checkout/cart.php $this->children = array( 'common/column_left', 'common/column_right', 'common/content_bottom', 'common/content_top', 'common/footer', 'common/header' ); 1.5.5.1 catalog/cont...

Jump to post
  • Wed Jan 23, 2013 5:07 pm
  • Replies 293
  • Views 197107
Re: OpenCart 1.5.5.1 Released!

I'm now testing the oc 1.5.5.1 before adopting it to my current 1.5.4.1 theme. I had to fix some codes about search box at the top because "catalog/view/javascript/common.js" has been changed! 1.5.4.1 var filter_name = $('input[name=\'filter_name\']').attr('value'); 1.5.5.1 var search = $(...

Jump to post
  • Wed Jan 23, 2013 4:06 am
  • Replies 132
  • Views 96739
Re: textarea works, but input type=text doesn't work

I got the answer. The variables were passed by "ajax", and "textarea" type has been fixed. FROM: data: $('#shipping-method input[type=\'radio\']:checked, #shipping-method textarea'), TO: data: $('#shipping-method input[type=\'radio\']:checked, #shipping-method input[type=\'text\'...

Jump to post
  • Thu Jan 17, 2013 5:54 pm
  • Replies 1
  • Views 492
textarea works, but input type=text doesn't work

Hi all, I was modifying two files: checkout/payment_method.tpl checkout/shipping_method.tpl It works with the following code. <textarea name="comment" rows="8" style="width: 98%;"><?php echo $comment; ?></textarea> However, the following code doesn't pass the $_POST var...

Jump to post
  • Thu Jan 17, 2013 5:23 pm
  • Replies 1
  • Views 492
forum/bbs and customer service module required

Hi all, I'm running the shopping cart based on opencart. http://pincoin.co.kr Majority of my customers are Korean, and they prefer posting an article on the forum(bbs) to sending an email when they have a request, problem or any concern. I am not sure if there exists the forum/bbs opencart module I'...

Jump to post
  • Thu Jan 10, 2013 5:59 pm
  • Replies 0
  • Views 1181
Re: [팁] 바로구매하기 버튼 만들기

rodtango wrote: 또 한가지는 바로구매를 클릭하면 첵아웃이 아니라 장바구니 보기로 가는군요
첵 아웃으로 가면 않될까요?
자바스크립트 코드에서 checkout/cart 부분을

Code: Select all

window.location='index.php?route=checkout/checkout';
으로 변경해주면 되겠지요.

그런데 사용자 입장에서 내가 뭐 구매하는지 한 번 정확히 확인시켜준다는 의미에서 장바구니로 이동시킨 것입니다. 이는 쇼핑몰의 정책 부분이니까 서로 이견이 있을 수 있다고 생각합니다.

그리고 저도 반갑습니다. :laugh:

Jump to post
  • Tue Dec 11, 2012 11:47 pm
  • Replies 2
  • Views 7174
[팁] 바로구매하기 버튼 만들기

오픈카트 기반 쇼핑몰을 운영하면서 가장 처음에 듣는 이야기가 바로 왜 "장바구니에 담기"만 있고 "바로 구매" 버튼이 없느냐는 이야기일 것입니다. 오픈카트는 본래 "장바구니에 담기" -> "결제하기(checkout)"로 별도의 프로세스로 진행하게 되어 있습니다. 많은 한국 사용자가 요청하는 "바로 구매" 버튼이라는 것은 개념적으로 보면 선택한 아이템을 장바구니에 담고 바로 결제하기 페이지로 리다이렉트 해주는 것입니다. 내용은 별거 없는데 수정할...

Jump to post
  • Mon Dec 10, 2012 5:16 pm
  • Replies 2
  • Views 7174
Re: 한국어 포럼은 언제 활성화 되려나... [내용 무]

rodtango wrote:관리자도 않게신가 봅니다.

많이 활성화 되야 서로 도움도 받고 정보도 공유 할 수 있지않을까요?

뭐 혼자서 솔선수범 할 수없고 ... 도움 받으러 오는 처지에...
여긴 관리자가 없죠. 그리고 포럼의 여러 주체가 평등한 입장에서 글을 게시하는 게 더 좋은 것 아닌가요?

각자 오픈카트로 개발한 쇼핑몰 공개하고 정보/팁 공유해나가는 게 좋을 것 같아요.

Jump to post
  • Mon Dec 10, 2012 12:44 pm
  • Replies 3
  • Views 6417
Re: isset

on which page? does not happen to me. it actually occurs when i remove "geo zone id" required field. i might not happen if you don't remove the required field. my php warning level is "notice", so i saw some warning messages: PHP Notice: Undefined index: comment in /home/pincoin...

Jump to post
  • Mon Dec 10, 2012 12:41 pm
  • Replies 2
  • Views 1268
isset

hi, i'm not sure if it was intended or not. i found the codes like: if ($zone_info) isn't it better if we change the code like this: if (isset($zone_info)) i see lots of warnings when debugging. i don't know opencart team code convention rule, but i hope you find a way to reduce printing errors. Tha...

Jump to post
  • Fri Dec 07, 2012 2:57 pm
  • Replies 2
  • Views 1268
[팁] 한국 원화로 페이팔 결제가 진행되지 않을 때

이곳 포럼에 faq 문서들부터라도 포럼 사용자들끼리 한글로 정리해두면 나중에 보는 분들이 도움이 되지 않을까 생각합니다. http://forum.opencart.com/viewtopic.php?f=136&t=65005 위 링크의 글은 페이팔 결제를 지원하지 않는 통화의 경우 문제 해결 방법입니다. 무슨 이야기이냐면 쇼핑몰의 통화가 "KRW"와 "USD"를 모두 지원하더라도 사용자 인터페이스에서 "KRW"로 선택되어 있으면 페이팔 결제가 되지 않습니다. 1.5.x 버전 이후...

Jump to post
  • Wed Dec 05, 2012 2:50 am
  • Replies 0
  • Views 4763
Re: 한국식 이름과 주소설정은 어떻게해야 하나요?

참고로 로그인하면 common/header 쪽에 text_logged 문자열이 first name으로 출력되는데요. 이는 controller/common/header.php 파일의 약 48번 째 줄의 다음 부분을 $this->customer->getFirstName(), 아래와 같이 수정해주시면 $this->customer->getLastName() . ' ' . $this->customer->getFirstName(), 성+이름으로 나옵니다. 물론 이런 식으로 수정할 곳이 많긴 합니다. 문제 생길 때마다 고친 다음 자체적으로 버전...

Jump to post
  • Wed Dec 05, 2012 1:47 am
  • Replies 3
  • Views 11354
Re: 한국어 포럼은 언제 활성화 되려나... [내용 무]

강좌, 튜토리얼 및 팁도 좀 올리시고

솔선수범하시면 됩니다. >:D

Jump to post
  • Thu Nov 29, 2012 9:40 am
  • Replies 3
  • Views 6417
Re: 한국식 이름과 주소설정은 어떻게해야 하나요?

성/이름을 홍/길동 따로 입력 받으실 계획이라면 view쪽만 수정하시면 될 것이고 만약에 한 필드에서 성과 이름을 한 곳에 받으실 계획이라면 예를 들어 firstname_field에 홍길동을 받을 경우 controller, model, view 모두를 수정해야할 것입니다. required 필수 입력 필드이기 때문에요. 우편번호 필드는 localization 설정 쪽에서 필수 사항 아닌 것으로 하면 반드시 입력 받을 필요는 없습니다. 대한민국만 고려하면 http://www.zipfinder.co.kr/zipcode/index.html...

Jump to post
  • Thu Nov 29, 2012 9:36 am
  • Replies 3
  • Views 11354
Re: issue rewards on register

bump;;;

Doesn't opencart provide the way to inject user customized codes in controllers, models or views?

Jump to post
  • Wed Nov 28, 2012 6:39 pm
  • Replies 1
  • Views 440
issue rewards on register

Hi, I'd like to give some reward points to my members as soon as they join. I found that it can be done by inserting the record into "customer_reward" table. I wanted to make an extension, but it doesn't look suitable with modules, shipping, payment, total or feed. Do I have to modify dire...

Jump to post
  • Tue Nov 27, 2012 5:48 pm
  • Replies 1
  • Views 440

Search found 26 matches