Re: Problem with custom date field and the date picker
Hmm if you didn't set a default value in your custom fields in admin, then the custom field shouldn't have any default values. I tested on my own installation of OpenCart and the custom date field shows up empty. Since you mentioned that you looked into "edit.twig", I assume you are referr...
Jump to post- Thu Nov 21, 2024 5:51 pm
- Replies 6
- Views 1138
Re: Bright White Plain Screen Used to Debug OpenCart Setup Error
Am I having a stroke or does this post not make any sense? How is the brightness of the screen used to debug an issue?
Jump to post- Thu Nov 21, 2024 5:34 am
- Replies 10
- Views 1603
Re: Add order status to the invoice layout
How can I add order status to the invoice layout? Go to "admin/controller/sale/order.php" and look for the "invoice" function. In that function, you should see the following line of code: $data['orders'][] = array( Just add the order status into the array, like: 'order_status' =...
Jump to post- Tue Nov 19, 2024 11:59 pm
- Replies 6
- Views 630
Re: Opencart cloud marketplace review process
Hi all, In opencart extension upload section I can see that there is a review process for cloud extensions. Based on your experiences, could anyone provide an idea of time which can be expected for review to be complete? Also, as I understand, there is no need of seller account for free extensions....
Jump to post- Mon Nov 18, 2024 11:14 am
- Replies 6
- Views 2314
Re: Insert products at coupons with Sku beside the name
If by "SKU", you are referring to the "Model" field, there's a very simple and quick change you can make to "admin/view/template/marketing/coupon_form.twig" so that the autocomplete search can include the "Model" field. To do so, you will have to look for the ...
Jump to post- Mon Nov 18, 2024 11:07 am
- Replies 5
- Views 951
Re: Modified product.twig but no changes happening
Isn't it the case that if you use the theme editor then all other mods get ignored and only the theme editor edited file is used? Yes - if the Theme Editor is used, the files' changes are stored directly in the database. So no modifications or even direct changes to the physical files itself won't ...
Jump to post- Mon Nov 18, 2024 11:00 am
- Replies 7
- Views 1457
Re: Changing order status, does that cause problems?
Hi, can anyone give me a tip on how to define the different status? I would really like to delete everything and redefine everything, but I keep reading about how this causes problems because some extensions, especially payment systems like Paypal, use the predefined values?, but I don't know becau...
Jump to post- Mon Nov 18, 2024 10:36 am
- Replies 4
- Views 870
Re: Wierd ip address
IPv6 uses hexadecimals. That gibberish string is definitely not IPv6.paulfeakins wrote: ↑Wed Nov 13, 2024 11:09 pmDid it actually look exactly like that or was it just an IPv6 address?
Anyway, found this (albeit rather old) answer on stackoverflow, which seems like it could be helpful: https://stackoverflow.com/a/7623231 Jump to post
- Thu Nov 14, 2024 5:42 am
- Replies 11
- Views 1187
Re: Wierd ip address
Probably spoofed their IP address in the headers. I believe REMOTE_ADDR is more reliable.
Jump to post- Wed Nov 13, 2024 2:15 pm
- Replies 11
- Views 1187
Re: Update php to 8.1 now error
Well, this error is quite self-explanatory. If you take a look at line 102 of "admin/controller/extension/dashboard/map.php", you will see the following line: $json[strtolower($result['iso_code_2'])] = array( Since the error already says the passing a null value to the strtolower function ...
Jump to post- Sat Nov 02, 2024 2:27 am
- Replies 7
- Views 2634
Re: Show product options on category page
You can just use the getProductOptions function from "catalog/model/product.php" to pull the available options for each product, and process it from there to be displayed in your product listing. Do also note that you will also need to add this modification into other pages/modules that di...
Jump to post- Sat Nov 02, 2024 2:12 am
- Replies 3
- Views 596
Re: OC3.0.4.0 PHP Warnings
Seems like it could be caused by an extension that you've installed since the path shows under modifications.
Jump to post- Wed Oct 30, 2024 10:41 pm
- Replies 8
- Views 1601
Re: PayPal Checkout - Apple Pay question
I have the same issue with my OC3038, and apply pay is not showing on any of our iphones. The payment gateway has been connected to our paypal and working fine but not showing apply pay. Have you completed your set up with Apple Pay in your PayPal account? You might want to check the documentation ...
Jump to post- Tue Oct 29, 2024 10:31 pm
- Replies 6
- Views 1988
Re: Error: Could not call registry key model_checkout_order!: in ..../system/engine/controller.php on line 43
Can confirm that there's no issue with bank transfer payment as I just tested it on my own clean installation of OpenCart 4.0.2.3.
Did you make any changes to the payment extension? Jump to post
- Extensions Support
- Error: Could not call registry key model_checkout_order!: in ..../system/engine/controller.php on line 43
- Fri Oct 25, 2024 7:51 am
- Replies 2
- Views 653
Re: [SOLVED] shipment only showing 'collect in store'
No problem If you don't mind, do edit your post to add [SOLVED] to your title. Jump to post
- Fri Oct 18, 2024 10:14 am
- Replies 3
- Views 1101
Re: How to add items to the admin menu
Which OpenCart version are you using? From OpenCart 4.0.2.0 and onwards, the URL separator should be "." instead of "|". So if you are using 4.0.2.x, your action route should be "extension/canvaspro/module/canvaspro.addMenu" instead of "extension/canvaspro/module/c...
Jump to post- Thu Oct 17, 2024 2:24 pm
- Replies 2
- Views 827
Re: shipment only showing 'collect in store'
Although I configured and enabled the extension for 'ship by weight' with GeoZones, only 'collect in store' is showing when selecting shipment type (both in shop and admin). What am I missing ? Opencart 4.0.2.3 Stefaan It works fine on my own installation of OpenCart 4.0.2.3. Perhaps you can check ...
Jump to post- Tue Oct 15, 2024 2:56 pm
- Replies 3
- Views 1101
Re: shipment method and payment method are in the wrong column
In Opencart 4.0.2.3 - admin view the shipment method is beneath the payment address and the payment method is beneath the shipment address (see attachment). it would make more sense to have them like this: shipment address - payment address shipment method - payment method Stefaan This is just how ...
Jump to post- Tue Oct 15, 2024 2:47 pm
- Replies 1
- Views 1119
Re: Currency Rate Engine - OC 3.0.4.0
Use the European Central Bank Currency Converter instead. You can install and enable the latter via the Extensions > Extensions > Currency Rates > European Central Bank Currency Converter and then choose it via the System > Settings > edit Store > tab Local > Currency Rate Engine : European Central...
Jump to post- Sun Oct 13, 2024 4:49 pm
- Replies 9
- Views 1722
Re: upload a photo on a mobile phone
I literally just tried this on my own installation of OpenCart 4.0.2.3 on Chrome with my iPhone, and was able to select the "Take Photo or Video" option when I click on the blue "Upload" button in OpenCart's Image Manager. Managed to take a photo and upload it directly with no pr...
Jump to post- Thu Oct 10, 2024 12:21 pm
- Replies 4
- Views 1099