Search found 19701 matches

Search found 19701 matches

Re: Shipping charges functionality

A few options.. 1. If you are dealing with a flat charge for a product, probably just easier to set up free shipping and just add the price to the product directly. Just make the price 600 for that product and have free shipping. 2. You can set the require shipping to false, that will remove the ite...

Jump to post
  • Thu Jun 21, 2018 1:53 am
  • Replies 3
  • Views 3936
Re: Review Module to be displayed in side columns

You have

Code: Select all

{% if review %}
but I don't see that declared in the controller. I see "reviews" but not "review"

Jump to post
  • Thu Jun 21, 2018 1:48 am
  • Replies 3
  • Views 813
Re: 2.3.0.2 p.date_modified workaround

Please stop making the same post over and over. I already replied to your first post with the fix.

Jump to post
  • Wed Jun 06, 2018 11:31 am
  • Replies 1
  • Views 771
Re: Do not apply special price to options

This shouldn't happen by default. Are you sure you aren't running a mod like Options Boost? That mod actually adds code to discount the option and it can be disabled by following the steps in the readme.

Jump to post
  • Mon Jun 04, 2018 12:53 pm
  • Replies 1
  • Views 629
Re: How to display options on category pages and search results pages

There are mods in the marketplace for this.. however, it may need some adjusting for custom themes.

Jump to post
  • Mon Jun 04, 2018 12:51 pm
  • Replies 2
  • Views 523
Re: p.date_modified broken?

1. EDIT: catalog/model/catalog/product.php

2. FIND:

Code: Select all

'p.date_added'
3. BEFORE, ADD

Code: Select all

'p.date_modified',
And yes it has been broken since forever.

Jump to post
  • Mon Jun 04, 2018 12:48 pm
  • Replies 3
  • Views 1771
Re: Need commercial support in "How OC uses cache!"

I'll give you a crash course..... 1. The basic database caching in OpenCart has been greatly reduced since the 1.5.x days.. The only things cached now are the modules for latest, bestseller, popular, etc.. manufacturers, and languages. 2. In 3.0, the twig template englne has a cache which does need ...

Jump to post
  • Mon Jun 04, 2018 11:56 am
  • Replies 6
  • Views 1052
Re: Redirect checkout and cart pages to login if sent there directly and not logged in

Why does the checkout/cart page show 404? That's the main issue... It should show the empty cart message. if you want to redirect to login on empty then you can do the following. But until you fix that 404 issue, it will never find the cart page to check that code. 1. EDIT: catalog/controller/checko...

Jump to post
  • Sat Jun 02, 2018 9:45 pm
  • Replies 1
  • Views 7345
Re: Log Customer Searches

Aha who knew..Just noticed there was a search report

Jump to post
  • Sat Jun 02, 2018 3:31 am
  • Replies 3
  • Views 1392
Re: Update van 2.3.0.2 naar 3.X

GDPR is being handled through one of the many GDPR extensions on the marketplace at this time.

Jump to post
  • Sat Jun 02, 2018 3:30 am
  • Replies 2
  • Views 872
Re: MD5 and authorize.net

Yes opencart uses the md5 hash value for Authorize.net AIM payment extension.

Jump to post
  • Sat Jun 02, 2018 3:28 am
  • Replies 7
  • Views 1464
Re: First Class Mail Parcel not appearing

First class "letter" means it's an envelope that meets other dimensional qualifiers
See the table here: https://www.stamps.com/usps/first-class-mail/

But you should be able to get first class package to show up.

Jump to post
  • Sat Jun 02, 2018 3:27 am
  • Replies 3
  • Views 957
Re: Log Customer Searches

That's not a core feature. I have a mod for this here:
https://www.opencart.com/index.php?rout ... n_id=34201

Jump to post
  • Fri Jun 01, 2018 3:05 am
  • Replies 3
  • Views 1392
Re: Renaming .htaccess.txt

Well if you already have one.. then try merging them together manually by copying the bits from the opencart one into the existing one... try to remove any duplicate lines (not necessary tho)

Jump to post
  • Fri Jun 01, 2018 2:19 am
  • Replies 5
  • Views 1094
Re: Main Categories Line to be Clickable

That will break the collapsing/expanding I think.
Here's an article on how to do it
https://stackoverflow.com/questions/199 ... -in-navbar

Jump to post
  • Thu May 31, 2018 11:37 pm
  • Replies 2
  • Views 719
Re: Change quantity for hasstock function

Not fully sure what you are trying to do
You could change

Code: Select all

if (!$product['stock']) {
to

Code: Select all

if ($product['stock'] <= -3) {
if you want to allow "0" to be checked out but "-3" or greater to not be allowed

Jump to post
  • Thu May 31, 2018 12:51 am
  • Replies 2
  • Views 2064
Re: Removing default store from Multistore

The default store is based on the main values in the "setting" table.. and doesn't have an entry in the "store" table. So you can't delete it.. but you can simply rename it to the store name you want and change the url to match. But then you'll need to know or hire someone that k...

Jump to post
  • Sat May 26, 2018 12:07 am
  • Replies 5
  • Views 1965

Search found 19701 matches