Re: Mixed content error
It is literally the bee image in the header which is possibly hard coded in to the template file or you need to update a module in the admin so that the image is https.
Jump to post- Fri Apr 23, 2021 12:20 pm
- Replies 2
- Views 76
Re: Custom product templates for individual products
This is a simple thing that I used for myself, welcome to it.
add templates to a new folder in ../template/product_id/
name the template files productxxx where xxx is the product_id (eg. product334.twig).
- Wed Apr 21, 2021 3:42 pm
- Replies 1
- Views 124
Re: Orders: Selecting and Printing Multiple Invoices
Yep but apparently we are imagining it :-) All I can tell you is that I have previously never seen it happen, but turns out it seems it is becuase I use Firefox 99% of the time. You mentioned Chrome so gave it a try on that and yes it does load in the main window in Chome. But it does not do that i...
Jump to post- Wed Mar 03, 2021 10:54 am
- Replies 11
- Views 646
Re: recurrent site goes down need databse repair
Seen that once before, I can't remember what the final resolution was but I think it might have been a setting "max_allowed_packet."
Have to speak to host.
- Tue Mar 02, 2021 9:56 pm
- Replies 30
- Views 977
Re: FAILING ON CHECKOUT
Localhost... are you using xampp? or something else?
For xampp, just google email setup xampp or whatever.
- Tue Mar 02, 2021 9:52 pm
- Replies 4
- Views 218
Re: Orders: Selecting and Printing Multiple Invoices
I beg to differ. I have never seen it happen! But just to be sure I just checked the 3036 I just installed - doesn't do it. Jump to postmikeinterserv wrote: ↑Sat Feb 20, 2021 8:34 pmAll 3.0.3.6 and 3.0.3.2 versions do it - nothing to do with extensions
- Sun Feb 21, 2021 11:46 am
- Replies 11
- Views 646
Re: help any one on options
Don't entirely understand your request.
...dtg or htv... ? No Idea.
Anyway, perhaps you are looking for dependant options. Try google: "opencart depend options"
- Sat Feb 20, 2021 12:47 pm
- Replies 2
- Views 485
Re: need your help to convert php conroller file module 2.3 to 3.0.3.1
I would suggest that you will need to request commercial support.
Jump to post- Sat Feb 20, 2021 12:44 pm
- Replies 2
- Views 160
Re: Orders: Selecting and Printing Multiple Invoices
It shouldn't do by defaults, so there is something else going on, an extension maybe.
Jump to post- Sat Feb 20, 2021 12:37 pm
- Replies 11
- Views 646
Re: Orders: Selecting and Printing Multiple Invoices
Yeah, it's a touch annoying. But a work around is to click a single order, the buttons then are active and then you can click on select all.
Jump to post- Tue Feb 02, 2021 9:41 pm
- Replies 11
- Views 646
Re: Sales Rep App (Android / On- & Offline)
A 'POS' extension might deal with it in a relatively easy way. Not sure if there is one that goees back to 1.5.x though.
Jump to post- Sun Jan 31, 2021 12:22 pm
- Replies 6
- Views 625
Re: Stock negative
Do you have "Stock Checkout" set to No in the system > settings?
Jump to post- Sun Jan 31, 2021 12:19 pm
- Replies 9
- Views 640
Re: Help With Modifying Drop Down Search Results in Admin
Can do it a couple of way, one of which is to update the ../admin/view/template/catalog/product_form.twig you are looking for the autocomplete function section: // Related $('input[name=\'related\']').autocomplete({ ..... ..... Then change this line: label: item['name'], into this: label: item.model...
Jump to post- Sun Jan 24, 2021 5:04 pm
- Replies 2
- Views 217
Re: LAYOUT QUESTION
It's probably me, not enough sleep, but I just don't get what you are doing or how you are doing it.
"home page layout adding to all common layouts"
I don't understand what it is you are doing.
Do you mean you have added all common ROUTES to the homepage layout?
- Sun Jan 24, 2021 4:43 pm
- Replies 5
- Views 240
Re: Disable Install/Uninstall Extension
If you uneed more granular control (per module) then you can do it by updating the ../extension/controller/module.php file validation function.
Jump to post- Sun Jan 24, 2021 4:24 pm
- Replies 3
- Views 190
Re: Disable Install/Uninstall Extension
No, should not be able to, but can.
The bit that stops them is acutally "extension/module" but this stops ALL modules being installed/uninstalled/edited.
- Sun Jan 24, 2021 4:14 pm
- Replies 3
- Views 190
Re: I have a problem in my store
Probably incorrect setup for HTTPS/SSL
Jump to post- Sat Jan 16, 2021 11:19 pm
- Replies 4
- Views 211
Re: How to display cart total on success page
I don't know why you just want the cart total, but have you considered using an "invoice on checkout success" extension. Think I did a free one of those, probably need updating to 3.x though. Sure there are others also though.
Jump to post- Thu Jan 14, 2021 8:52 pm
- Replies 3
- Views 231
Re: Extension reviews
I slept on it and it dawned on me.
Those are "Ratings", not Reviews.
- Sat Dec 19, 2020 4:29 pm
- Replies 4
- Views 1399
Re: Adjusting the sorting of menu items
In ../catalog/controller/common/menu.php Change this line: $children = $this->model_catalog_category->getCategories($category['category_id']); To this: $children = $this->model_catalog_category->getCategoriesDateSorted($category['category_id']); Then in ../catalog/model/catalog/category.php Add a ne...
Jump to post- Sat Dec 19, 2020 3:22 pm
- Replies 2
- Views 174