Search found 162 matches

Search found 162 matches

Re: Checkout not working

After click "Confirm Order" have you checked the console for Javascript errors?

Jump to post
  • Tue Apr 20, 2021 2:20 am
  • Replies 6
  • Views 1598
Re: Adding manual orders for customers not using customer group pricing

If you really think this restriction is needed then i think at least the code could change this way: // Customer Group if (($this->customer->isLogged() && ($this->customer->getGroupId() == $this->request->post['customer_group_id'])) || (is_array($this->config->get('config_customer_group_disp...

Jump to post
  • Mon Nov 23, 2020 7:15 am
  • Replies 19
  • Views 3457
Re: Adding manual orders for customers not using customer group pricing

I understand why you think this restriction is needed, but i think this restriction is stupid. If there be the same restriction in the customer edit page and i can't select customer group which don't belong to the store where customer register, then this restriction could be reasonable. But now I ca...

Jump to post
  • Sun Nov 22, 2020 9:22 pm
  • Replies 19
  • Views 3457
Re: Adding manual orders for customers not using customer group pricing

This store lookups for order edit was added in version 2.0.0.0. and I really don't understand why. In previous versions it was only for customer registration page. I understand why is needed in the customer registration page, for customer restriction, this way they can't select from all the customer...

Jump to post
  • Sun Nov 22, 2020 3:43 pm
  • Replies 19
  • Views 3457
Re: Adding manual orders for customers not using customer group pricing

This is only your point of view, not the right answer. If i follow your point of view then it's impossible added dedicated prices to specific customer group if i don't allow customers to register with this group.

Jump to post
  • Sat Nov 21, 2020 12:57 am
  • Replies 19
  • Views 3457
Re: Adding manual orders for customers not using customer group pricing

The problem is in config_customer_group_display.

If the admin has customer group and don't want to show in registration page list, then he can't place the manual order with prices for this customer group.

Jump to post
  • Wed Nov 11, 2020 5:10 am
  • Replies 19
  • Views 3457
Re: Adding manual orders for customers not using customer group pricing

It's not fixed, this bug is still present. Open file catalog/controller/api/customer.php and change: if (is_array($this->config->get('config_customer_group_display')) && in_array($this->request->post['customer_group_id'], $this->config->get('config_customer_group_display'))) { into if (!empt...

Jump to post
  • Wed Nov 11, 2020 4:08 am
  • Replies 19
  • Views 3457
Re: Is there any future for Opencart or its dying slow ?

commented on 15 Feb 2019
Hi, when you see the new version, it's been a long time since the last release. Thx

danielkerr commented on 15 Apr 2019
Yes new stuff keeps coming up. Should be this month.

Or maybe next year?

Jump to post
  • Tue Apr 07, 2020 12:17 am
  • Replies 34
  • Views 35734
Re: Cart not refreshing after deleting or adding product

Try replace in catalog/view/javascript/common.js in add function if (json['success']) { $('#content').parent().before('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss=...

Jump to post
  • Mon Sep 17, 2018 12:32 am
  • Replies 18
  • Views 32954
Re: Bootstrap SASS

You can't use BS 4 with Opencart because BS4 use Autoprefixer when compile sass and Opencart sass compiler does not have this feature.

BS4 dist code:

Code: Select all

display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
OC3 sass compiler dist code:

Code: Select all

display: flex;
flex-wrap: wrap;

Jump to post
  • Mon Sep 03, 2018 4:38 am
  • Replies 2
  • Views 2694
Re: Translate default currency

Is there a way to translate the currency ?
No, there is no way to that. Opencart doesn't have multilingual currency. You can try to search in marketplace for some extension.

Jump to post
  • Tue Aug 14, 2018 3:43 pm
  • Replies 2
  • Views 896
Re: Unapproved Customer Places Order

I don't know how you seted up discounts, but if you open the order table in phpMyAdmin you can check if the order contain the "customer_id" greater then 0.

If the "customer_id" is 0, then this customer completed the checkout like guest.

Jump to post
  • Thu Aug 09, 2018 9:45 pm
  • Replies 3
  • Views 716
Re: Unapproved Customer Places Order

Yes, he placed an order like guest. If you do not want this, you must disable the guest checkout.

Jump to post
  • Thu Aug 09, 2018 3:48 am
  • Replies 3
  • Views 716
Re: Opencart Alpha 3.1 has been released

This release has so many bugs and unfinished things that it's not good either to test.

Jump to post
  • Wed Jul 25, 2018 4:42 pm
  • Replies 5
  • Views 5399
Re: Send product_id to created custom page and save product_id on language change and on loggin

Try this View : <form action="{{ action_credit }}" method="post" enctype="multipart/form-data"> <input type="hidden" name="product_id" id="input-product-id" value="{{ product_id }}" /> <button type="submit" class="b...

Jump to post
  • Mon Jul 02, 2018 6:25 pm
  • Replies 21
  • Views 29468
Re: Send product_id to created custom page and save product_id on language change and on loggin

Try this: if (!$this->customer->isLogged()) { $this->session->data['redirect'] = $this->url->link('product/kredit', 'product_id=' . (int)$this->request->post['product_id'], true); $this->response->redirect($this->url->link('account/login', '', true)); }

Jump to post
  • Sat Jun 30, 2018 10:46 pm
  • Replies 21
  • Views 29468

Search found 162 matches