Fast Courier (Australia) Shipping Module for Opencart
Hi folks, I need a shipping module to work with Fast Courier API / Quotes as per https://enterprise.fastcourier.com.au/docs/api so JUST FOR QUOTES.
Actually I'm working with custom php but I'd love to integrate with my Opencart Store.
Did someone customized a module already? Cheers
- Wed Aug 14, 2024 7:29 am
- Replies 1
- Views 3179
Re: Checkout page stuck on loading
Solved! https://i.ibb.co/ngSw11z/Screenshot-2.jpg private image sharing What I did. 1) Rename the folder on the mod zip squareup_2.4.8\OpenCart_2.0.x-2.1.x\square.ocmod\upload\catalog\view\theme\journal2\template by changing the folder journal2 to match fastor, my theme name. 2) Go to /admin/index.p...
Jump to post- Sat Jun 15, 2024 8:53 am
- Replies 5
- Views 1420
Re: Checkout page stuck on loading
OpenCart Version 2.1.0.2
Tried Square (OpenCart 2.0.0.0 - OpenCart 2.1.0.2)
Not working with Theme Fastor.
What version should I install then?
- Sat Jun 15, 2024 8:32 am
- Replies 5
- Views 1420
Re: How to install fastor theme on opencart
I've entered in a loop LOL Jump to post
- Mon Jul 24, 2023 3:32 pm
- Replies 5
- Views 1287
Re: Display Products Outside of Opencart
With this query (you can customize easily) you'll be getting 10 latest products from store_id 0, category 230, manufacturer 17 with "keyword" to build nice SEO friendly links to your store. O0 SELECT `oc_product`.`product_id`,`name`,`description`,`image`,`keyword`FROM `oc_product` LEFT JOI...
Jump to post- Sat Sep 04, 2021 6:34 pm
- Replies 5
- Views 1230
Re: Spam, bots and delete customers without orders
You can use our Spambot Buster tool to prevent spambots from doing fake customer registrations and sending spam mails. Our tool uses an invisible honeypot trap and also checks for required mouse/touch/keyboard events to distinguish between genuine human users and spambots. Beautiful. All my extensi...
Jump to post- Sat Sep 19, 2020 5:36 am
- Replies 7
- Views 10734
Re: Spam, bots and delete customers without orders
Yeah, I try installing Google reCaptcha but couldn't make it work, then the one you see and still like that, they overpass. Jump to postEvolveWebHosting wrote: ↑Tue Sep 15, 2020 11:31 pmreCaptcha should stop a lot of this or you can look into a firewall.
- Sat Sep 19, 2020 5:35 am
- Replies 7
- Views 10734
Spam, bots and delete customers without orders
I'm having troubles since in Australia with my Opencart. I'm getting heaps of India/China registrations from fake customers. To avoid overload my customer table I'm erasing all customers without orders: DELETE `oc_customer` FROM `oc_customer` LEFT JOIN `oc_order` ON oc_customer.customer_id = oc_orde...
Jump to post- Mon Sep 14, 2020 3:07 am
- Replies 7
- Views 10734
Re: Integración de Mailrelay y Opencart 2.0.1.1
Si lo que queréis es subscripciones rápidas lo podeis utilizar asi: https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=38617 Eso mismo lo podeis hacer con cada formulario, de inscripcion de cliente, de pedido... es super facil de implementar, son cuatro lineas de co...
Jump to post- Thu Feb 27, 2020 12:27 am
- Replies 2
- Views 1303
Re: Amazon Pay and Login with Amazon - ERROR: There are no shipping options to the selected address.
I’m glad I Searched and found this. I too ran into the same problem yesterday. I have 2.3.0.2 version. After iSenseLabs assisted with the QuickFix, the AmazonPay module worked. But the address is the issue at checkout. When you say, Amazon profile, do you mean on Amazon’s platform or in the OpenCar...
Jump to post- Extensions Support
- Amazon Pay and Login with Amazon - ERROR: There are no shipping options to the selected address.
- Sat Sep 14, 2019 10:31 pm
- Replies 6
- Views 2936
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
I've tried in module/cart.php after foreach ($this->cart->getProducts() as $product) { : /* Manufacturer Mod */ $product_total = 0; foreach ($this->cart->getProducts() as $product_2) { $product_total = 0; if ($product_2['manufacturer_id'] != $product['manufacturer_id'] && $this->request->get...
Jump to post- Thu Jan 17, 2019 11:02 am
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
Customers may want to be informed whenever this restriction implies versus redirection without considering the Event Management during the process. How can I run my code exactly after the product/s is/are added? Or print the alert since then on $(document).ready(function() ? // $this->redirect($thi...
Jump to post- Thu Jan 17, 2019 4:38 am
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
You may take a look at https://www.tee-shirt.com.au if you want.
Cheers mates
- Wed Jan 16, 2019 6:12 pm
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
Using the same code I used before I got the function, in module/cart, after foreach ($this->cart->getProducts() as $product) { /* Manufacturer Mod */ $product_total = 0; foreach ($this->cart->getProducts() as $product_2) { $product_total = 0; if ($product_2['manufacturer_id'] != $product['manufactur...
Jump to post- Wed Jan 16, 2019 5:59 pm
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
This should provide what you need. First of all, thanks for your support/help- I understand the code, but it doesn't make the function and the cart module disappear when I click to view the items that contains. Is that the easiest way to check and redirect (not necessary the warning, but redirect o...
Jump to post- Wed Jan 16, 2019 5:05 pm
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
Really I do not understand what do you want, but first your code is wrong.. Thanks, that's why I'm trying to get help. I want the cart module to redirect the customer when is trying to add a second manufacturer_id product different from manufacturer_id = "0", so the manufacturer_id zero i...
Jump to post- Mon Jan 14, 2019 7:10 am
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
Something like...? /* Manufacturer Mod */ $manufacturers = array_unique($product['manufacturer_id']); if(($product['manufacturer_id'] != 0 && $manufacturers > 2) && $this->request->get['route'] != 'checkout/cart') { $this->redirect($this->url->link('checkout/cart')); }
Jump to post- Sun Jan 13, 2019 4:32 am
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
Unless I make something complicated in the backend like organize a multi-order by manufacturer also, is not reasonable just for logistics. This takes me to another idea that is IF CART HAS MORE THAN 1 MANUFACTURER THEN CREATE SEPARATE ORDERS FOR EACH MANUFACTURER, but I don't know how complex could...
Jump to post- Sun Jan 13, 2019 4:06 am
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
By the way, this function is the same as Aliexpress have, for example. But you can finalize the cart with different manufacturers/shipping methods at the same time and it really increases the sales. I don't want to enable multiple manufacturer orders, as per logistic when I'm out of my desk I just r...
Jump to post- Sun Jan 13, 2019 4:01 am
- Replies 21
- Views 16821
Re: Redirect to checkout if more than 2 manufacturer_ids with cart module
You do not want to count, you want to check only if the manufacturer id = 2 or any other id. Sorry, that's it, partially. I want to check if customer is adding more than one manufacturer_id product/s and manufacturer_id != 0. And stop him from adding product/s that later will have to remove from th...
Jump to post- Sun Jan 13, 2019 3:51 am
- Replies 21
- Views 16821