Search found 19701 matches

Search found 19701 matches

Re: 2 themes and order status

Honestly, it's 2018.. if you aren't using a proper responsive theme yet.. one theme that adjusts for all formats, you are just wasting your own time. You don't need theme tricks to determine if a user is coming from a mobile or desktop. A few simple lines will determine it https://stackoverflow.com/...

Jump to post
  • Thu Jul 12, 2018 11:20 pm
  • Replies 3
  • Views 674
Re: New confirmation mail with every order edit?

When you checked to Notify Customer option then after notification mail sends to order customer otherwise not. This is not new functionality but I was added version 1.5.x to still 3.x version. That's the order "view" page.. not the order "edit" page. Completely different process...

Jump to post
  • Thu Jul 12, 2018 10:24 pm
  • Replies 12
  • Views 1729
Re: URL Issue in OpenCart 3? Categories show in url intermittently

These are just canonical links. See this thread
viewtopic.php?f=190&t=185460&p=678651

Basically since a product can belong to multiple categories, it makes more sense to just direct link it

Jump to post
  • Thu Jul 12, 2018 10:21 pm
  • Replies 3
  • Views 923
Re: OC3, Default Checkout, PayPal Express checkout problem

Would need a link to your site to see the issue.
Journal checkout already offers coupon during checkout.
But for default checkout, there are a ton of mods on the marketplace for that. Just search "Coupon checkout"

Jump to post
  • Thu Jul 12, 2018 10:16 pm
  • Replies 6
  • Views 2155
Re: Fatal Error No: 1146 .. Please Help Someone

Some mod you are using is trying to access a table that it expects to be there.. but the table is not there. Try uninstalling the "lightning" mod and reinstalling it.. that is usually when db tables are added

Jump to post
  • Thu Jul 12, 2018 10:09 pm
  • Replies 9
  • Views 8897
Re: Force store to https and www

I use this RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] You can just use it as is on any site because you don't need to hardcode the actual domain name. HTTP_HOST is a...

Jump to post
  • Thu Jul 12, 2018 10:05 pm
  • Replies 1
  • Views 466
Re: New confirmation mail with every order edit?

So there are 2 fixes likely needed. 1. Add a checkbox for notification during order entry/update 2. Fix the editOrder call that resets the order_status_id to not reset it and just leave it as it was so that when you do want to notify, it sends the "edit" email and not the "new order&q...

Jump to post
  • Thu Jul 12, 2018 3:36 am
  • Replies 12
  • Views 1729
Re: New confirmation mail with every order edit?

My apologies if I misunderstand some of the wording here.... Just to be clear, in 3.0 1. If you create a new order in admin, the customer DOES get an email automatically. There is no option to send or not send emails (which should be added). 2. If you "edit" the order in admin (not to be c...

Jump to post
  • Thu Jul 12, 2018 2:02 am
  • Replies 12
  • Views 1729
Re: Profile Page for customers 2.3.0.2

The url has &product_id=50 and that tells the code to load product 50
But what information are you trying to show? Most of that info is already in the Account page.

Jump to post
  • Wed Jul 11, 2018 1:01 am
  • Replies 1
  • Views 381
Re: Looking for a way to add packaging weight at the checkout

What you need is a packaging algorithm. I have one I made for my mods that I was looking to spin off into a general purpose mod, but it works in a different way than this one. I have another commercial design that reflects what you are looking for but haven't had the time to make one yet. Perhaps I ...

Jump to post
  • Wed Jul 11, 2018 12:59 am
  • Replies 1
  • Views 1546
Re: Admin panel almost no options nor menu

No that wouldn't be it. If you can PM me with ftp access I can take a look

Jump to post
  • Wed Jul 11, 2018 12:57 am
  • Replies 7
  • Views 1072
Re: Admin panel almost no options nor menu

What is that "Languages" dropdown at the top? That's not standard. Did you install some custom version or some other mods?
My guess is that you just need to visit the permissions page and add permissions, but that normally only happens after an upgrade, not a fresh install.

Jump to post
  • Tue Jul 10, 2018 10:43 pm
  • Replies 7
  • Views 1072
Re: Undefined variable: error_warning in Checkout

The main catalog/controller/checkout/cart.php file should have a block of code like this if (!$this->cart->hasStock() && (!$this->config->get('config_stock_checkout') || $this->config->get('config_stock_warning'))) { $data['error_warning'] = $this->language->get('error_stock'); } elseif (iss...

Jump to post
  • Tue Jul 10, 2018 10:41 pm
  • Replies 1
  • Views 661
Re: checkboxes seem to be glitching

Hit F12 and see if there are any errors in the console. This usually means there is a javascript error which likely came from some other mod.

Jump to post
  • Tue Jul 10, 2018 5:01 am
  • Replies 1
  • Views 837
Re: Admin notification when product in stock

Where is the stock update happening? Is there some cron script that runs that updates qty? It would be in that script that the email should be sent.

Jump to post
  • Tue Jul 10, 2018 4:58 am
  • Replies 1
  • Views 304
Re: same product different price per category

Can't fully think why the price would change for the same item regardless of what category it is from.

Jump to post
  • Tue Jul 10, 2018 4:56 am
  • Replies 1
  • Views 322
Re: [vQmod] *FREE* Support for Theme Overrides in 3.0

Technically since vQmod is a file-based system, it doesn't really belong in the official release so it's released as a separate script. However, it might make sense to rewrite or add another modCheck-like function to support passing in strings as well as files as the source. But that's something we'...

Jump to post
  • Mon Jul 09, 2018 9:37 pm
  • Replies 3
  • Views 608
[vQmod] *FREE* Support for Theme Overrides in 3.0

OpenCart 3.0 has a nifty theme editor built into the admin now. It allows you to edit the template files through the admin, but when you save, it doesn't modify the original file. Instead, it saves the file with the modification to the database and when the page is loaded, if an override exists in t...

Jump to post
  • Mon Jul 09, 2018 12:19 pm
  • Replies 3
  • Views 608
Re: Review Module to be displayed in side columns

If you'd like i can take a look.. pm me ftp access

Jump to post
  • Fri Jun 22, 2018 10:48 am
  • Replies 3
  • Views 818
Re: How do I deal with very large download files?

My post above is still the best (possibly only) option. It has nothing to do with opencart but instead the hosting limits, as well as limitations on the overhead of http for file transfers. FTP is literally made for file transfers and this mod allows you to upload all your files to the server at onc...

Jump to post
  • Thu Jun 21, 2018 2:07 am
  • Replies 7
  • Views 1431

Search found 19701 matches