Re: Failed to autocomplete in Admin
spot it !
It was missing the destination for the drop-down after the input
Code: Select all
<ul id="autocomplete-model" class="dropdown-menu"></ul>
- Thu May 22, 2025 6:24 pm
- Replies 3
- Views 2051
Re: Failed to autocomplete in Admin
In Trying to do an autocomplete in a form on admin side Some forms in the OC admin already autocomplete - why don't you copy how OpenCart does it rather than create a new way? Hi Paul, Thanks for your feedback ! Yes the code I use is an extract of the existing one, but I should have missed somethin...
Jump to post- Thu May 22, 2025 5:39 pm
- Replies 3
- Views 2051
[SOLVED] Failed to autocomplete in Admin
Hello everybody, I am learning with V4.1.0.3 In Trying to do an autocomplete in a form on admin side Everything is going well to the step I have the correct JSON response. I can even see JQuery building the list string while stepping inside But then the list result is not displaying back in my input...
Jump to post- Thu May 22, 2025 2:59 am
- Replies 3
- Views 2051
Re: Adding API into opencart
As far as I can see, the Printify API is designed for use by developers, so you’ll need to build (or hire someone to...) your own integration. Unfortunately, I haven’t seen any prebuilt integration available for OpenCart. However, Printify does offer an alternative solution called Printify Pop-Up, w...
Jump to post- Wed May 14, 2025 2:58 am
- Replies 2
- Views 7492
Re: Feedback on exit popup implementation
Hi,
Maybe it could be like that :
- First time you display the popup coupon
- Next times no popup but instead you show a button to apply for the coupon during the checkout process
if so customer won't get annoyed by recurrent popup but still will be happy to keep the opportunity of the coupon !
- Mon May 05, 2025 3:29 pm
- Replies 1
- Views 1061
Re: Wrong language in the URL should redirect to default language
BTW - I opened an issue on Github > #14852
Jump to post- Mon May 05, 2025 3:16 pm
- Replies 2
- Views 2977
Wrong language in the URL should redirect to default language
Hello there, ( In OC V4.1.0.3 ) I had some malformed URL to my site which lead to an error message, recorded in the log file. Trying to access array offset on value of type null in .../catalog/controller/common/language.php on line 53 I think instead it should redirect to the default language. Here ...
Jump to post- Sun May 04, 2025 12:27 am
- Replies 2
- Views 2977
Re: Vape Liquid UK - www.vapeliquiduk.com
Very nice and clean website !
I was a bit frustrated to find only 2 articles in the Blog section for a site specialised on this subject.
- Sat May 03, 2025 5:33 pm
- Replies 4
- Views 40516
Re: Génération d’images IA pour OpenCart : une bonne idée ?
Bonjour, J'ai fais quelques essais sur mon site par exemple l'image de la catégorie ici : Illustration IA et je dois avouer que c'est bluffant. Tout est entièrement définissable. La qualité de la composition est bonne voire excellente. Maintenant pour aller un niveau au dessus plutôt que de remplace...
Jump to post- Fri May 02, 2025 3:36 am
- Replies 1
- Views 1339
Re: Learning to Program
I am also starting with opencart development... After playing around a little to understand how it works, I setup very simple target to begin with : write an extension that would display 'Hello world' in the backend ! It will split in understanding how an extension is packaged (Difficult part is it'...
Jump to post- Fri May 02, 2025 3:22 am
- Replies 1
- Views 23025
[SOLVED] Re: OC 4.1.0.3 Search is broken
The bug was referenced as #14746 in Github
First I did not find it as they do not mention the 'search' term in the title
I tried the committed file in d9714d1 which perfectly solved the problem.
Tks
- Tue Apr 22, 2025 4:31 am
- Replies 5
- Views 2395
[SOLVED] OC 4.1.0.3 Search is broken
As far as I can understand there was an update on how the columns sku, upc, ean, jan, isbn, mpn are handled. They are no more parts of the main oc_product table, but now belongs to oc_product_code table. If so we need to join this table to search inside, else get an error Error: Unknown column 'p.sk...
Jump to post- Mon Apr 21, 2025 11:25 pm
- Replies 5
- Views 2395
Re: The HTML content module information does not save properly during backup
This is definitively the same mistake...
There Briuri user describe it well
After I removed the line break from the oc_module description string everything went to work well !
- Wed Apr 02, 2025 2:14 am
- Replies 2
- Views 1337
[SOLVED] The HTML content module information does not save properly during backup
Hello there :) Using OC V4.1.0.0 I made a simple backup of the DB then restore it which broke my website at the home page. There I found the culprit module ' HTML Content '. Removing it manually from the oc_layout_module solve the problem to display the main page. However I cannot access any more th...
Jump to post- Tue Apr 01, 2025 11:14 pm
- Replies 2
- Views 1337
Re: [SOLVED] Where are text strings and translations for CMS module ?
It looks like more information than a query. Could you confirm if you are facing any issues in any configuration of the Opencart v4.1.0.0 Store, or what was your actual query if it is already resolved? Yes I was not so sure how to put this information online, but find it may still be of interest fo...
Jump to post- Thu Mar 27, 2025 7:00 pm
- Replies 2
- Views 2184
[SOLVED] Finding missing strings and translations
From my previous post where I was searching for localisation of a particular string I was wondering if there was any tools in OC to help find missing strings in the text files. I come with making myself a simple one line command tool that despite it's simplicity is already quite helpful. find -type ...
Jump to post- Sun Mar 02, 2025 6:13 am
- Replies 0
- Views 3067
[SOLVED] Where are text strings and translations for CMS module ?
In V4.1.0.0 you will find these strings in
/extension/opencart/catalog/language/en-gb/module/topic.php
There if missing you could add
Code: Select all
$_['text_all'] = 'All subjects';
. Jump to post
- Sun Mar 02, 2025 5:56 am
- Replies 2
- Views 2184
Pour nos amis nordiste....
Remplacer 'Nord' par 'Haut de France'
Code: Select all
UPDATE
oc_zone z
JOIN
oc_country c ON c.country_id = z.country_id
SET
z.name = 'Haut de France'
WHERE
z.name = 'Nord'
AND c.name LIKE 'France%';

- Tue Feb 25, 2025 5:08 am
- Replies 0
- Views 1056
[OC 4.1.0.0] Setting a default option (catalog)
This is a new answer to an old thread here: https://forum.opencart.com/viewtopic.php?p=223071#p223071 Because it is a simple (but complete) solution, it's posted here. This is an updated code for V4.1.0.0 so the first value (in order) would be the default one Pay attention this is a temporary workar...
Jump to post- Sun Feb 23, 2025 2:35 am
- Replies 0
- Views 1597
Re: Favicon
Hello, I suggest to put near the top where there is no logic (for, if...) instructions. I put mine after the 3 lines "meta" Works well. I tried first to update with the theme editor but without success - I'll try to investigate why - Then I update from the CLI the file : /catalog/view/temp...
Jump to post- Tue Sep 26, 2023 4:25 am
- Replies 21
- Views 11004