Search found 1527 matches

Search found 1527 matches

Re: Out of stock product notification method change

I have an extension that stops the products being added to the cart in the first place so would remove this problem.

Or edit the cart template and add a style

Code: Select all

<span class="text-danger" style="font-size: 3em;">***</span>

Jump to post
  • Sat Jun 10, 2023 11:02 pm
  • Replies 3
  • Views 684
Re: Display "out of stock" products last in category/manufacturer/search etc

You could have a look at... https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=38251 Like I said in my first post, I tried it but doesn’t seem to work on OC 3.0.3.8 The code works fine, but it is only for the category page, but is easy enough to copy that to specia...

Jump to post
  • Sun Jun 04, 2023 10:48 pm
  • Replies 8
  • Views 900
Re: Opencart vqmod issue

The Packets out of order bit is generally something of a red herring and it is the "MySQL server has gone away" bit that is a clue. If you get the problem with the add to cart button then I guess the store front actually loads up, so likely a time out issue. Unfortunately, I don't think yo...

Jump to post
  • Sun May 21, 2023 11:00 pm
  • Replies 5
  • Views 2316
Re: How can I hide out of stock items?

First, why? Affects search engines.

Otherwise, for the category it is the getproducts() function in ../catalog/model/catalog/product.php file.

Find

Code: Select all

AND p.`status` = '1'
and after add

Code: Select all

 AND p.quantity > '0'
That should in theory work, though I supply no guarantee as that is from memory.

Jump to post
  • Sat Apr 22, 2023 10:38 pm
  • Replies 5
  • Views 1256
Re: Error message when trying to install an extension in Opencart 3.0.3.7

That file does not exist, at least not by default. So you are unlikely to get any answers, though I guess you don'e want or need any.

Jump to post
  • Tue Apr 18, 2023 8:47 pm
  • Replies 2
  • Views 278
Re: Installation History Auto cleanup

haxcop wrote:
Thu Apr 06, 2023 8:34 pm
Hi, Yes I do agree, but If you remove the old one, any conf you had will be lost so that's not ideal
Shouldn't be. Most config is held in the database and uninstalling will only remove the files. So when you reinstall then the settings should still all be there.

Jump to post
  • Thu Apr 06, 2023 9:21 pm
  • Replies 9
  • Views 1168
Re: Upload plugin in opencart 4.0.1

If there is no json file then the extension may not be suitable for OC4x

You will find the extension, via FTP, in the folder ../system/storage/marketplace/

Not sure there is a way to clear it from the admin and you probably have to delete it via FTP.

Jump to post
  • Sat Apr 01, 2023 8:52 pm
  • Replies 5
  • Views 3365
Re: Remove quantity in product page

Why don't you just have an "Extra Persons" select option. 1 + $100, 2 + $200 etc....?

Jump to post
  • Sun Mar 26, 2023 10:41 pm
  • Replies 5
  • Views 512
Re: Return date in reverse format

It is fixed in the product template: <input type="text" name="option[{{ option.product_option_id }}]" value="{{ option.value }}" data-date-format="YYYY-MM-DD" id="input-option{{ option.product_option_id }}" class="form-control" />

Jump to post
  • Sun Mar 26, 2023 10:39 pm
  • Replies 1
  • Views 154
Re: Is any documentation available for migrating v1.5.6 to v3.0.3.8?

Yes? It wasn't hard, Just took a while. Obviously I did it locally, not online. And most of the problems were with extensions, not the core. The store was up and running pretty quickly on the default theme, once the database had been sorted. There are many ways to do it, but we still think starting...

Jump to post
  • Sun Mar 26, 2023 10:26 pm
  • Replies 11
  • Views 675
Re: What changes in localization files between OC3 and OC4?

They are largely the same, some items have been renamed, some things are added and some things are removed, but I don't think it would be much work to merge the translations, something like 80% copy and paste.

Jump to post
  • Fri Mar 24, 2023 9:45 pm
  • Replies 4
  • Views 1149
Re: Is any documentation available for migrating v1.5.6 to v3.0.3.8?

So in summary upgrading it was really hard, you had to re-write loads of stuff and solve loads of errors, and you wouldn't do it again but you'd still recommend it :laugh: Yes? It wasn't hard, Just took a while. Obviously I did it locally, not online. And most of the problems were with extensions, ...

Jump to post
  • Fri Mar 24, 2023 9:31 pm
  • Replies 11
  • Views 675
Re: 503 error on GoDaddy servers

I accidentally ended up on GoDaddy (web host sold out, then sold out again and is now white label GoDaddy) and although not terrible, there are enough annoyances that I will be moving that particular hosting account elsewhere. I would suggest doing the same, but before you pick a new one, google the...

Jump to post
  • Thu Mar 23, 2023 9:55 pm
  • Replies 7
  • Views 810
Re: Is any documentation available for migrating v1.5.6 to v3.0.3.8?

Rebuilding not needed, I did 1.5.4 to 3.0.something after trying import/export route and decided it would actually be quicker to updrade it than deal with the import/export issues that I had. Cloned store, removed theme, thought sod it, lets see what the upgrade script does, it did something, then I...

Jump to post
  • Thu Mar 23, 2023 9:38 pm
  • Replies 11
  • Views 675
Re: Bug discovered? Invoicing

You can also reset the auto increment number on the order table. Though order id and invoice number still won't for reasons stated above.

ALTER TABLE oc_order AUTO_INCREMENT = 1468;

Jump to post
  • Thu Jan 05, 2023 9:04 pm
  • Replies 5
  • Views 1266
Re: cannot add product to sub-category

Dropdown? Well I suppose it sortof is, but it is also an autocomplete by default. Have you tried typing "gadgets" into the box?

Jump to post
  • Mon Dec 19, 2022 10:26 pm
  • Replies 5
  • Views 565
Re: Gift Vouchers field not appearing anywhere in checkout.

Gift vouchers are redeemed in the Shopping Cart, not the checkout.

If you want to add it to the checkout, you need an extension for that.

Jump to post
  • Mon Dec 19, 2022 10:20 pm
  • Replies 7
  • Views 571
Re: Can't see purchases in Marketplace

Well I don't know about the whole seeing your purchases bit, but the extension you are trying to install is trying to write to admin/controller/sale/ folder, which is not allowed by default (should write to the ../extension/ folder), which is an issue with the extension you are installing and not re...

Jump to post
  • Thu Nov 03, 2022 10:03 pm
  • Replies 3
  • Views 573
Re: Have an issue with my website going funny during checkout.

That is not the checkout, it is returning to the product page after the product designer closes, the product designer may be loadint its own css which may overwrite the default css. It is also not updating the header cart. I would go back to the extension seller and ask, as your theme looks fairly m...

Jump to post
  • Thu Nov 03, 2022 9:51 pm
  • Replies 2
  • Views 1513

Search found 1527 matches