Re: x-shipping pro help
It's ok got it sorted in the end I think
I had to install another extension called "Shipping based payments OpenCart 2.3/3.0" and looks like it has worked
- Tue Jan 14, 2025 9:50 pm
- Replies 4
- Views 428
Re: x-shipping pro help
I have asked but waiting for a reply, thought I would ask in here in the mean time while waiting for a reply as it's bit urgent
Jump to post- Mon Jan 13, 2025 11:27 pm
- Replies 4
- Views 428
[SOLVED] x-shipping pro help
I have x-shipping pro installed on a 2.3.0.2 opencart store and it works for a customer who is inside a certain area but if a customer is outside of the area, the shipping method cost of £12 does not show For example the shipping shows under delivery method which is Inside London [Inside M25] £12 Bu...
Jump to post- Mon Jan 13, 2025 10:12 pm
- Replies 4
- Views 428
display weight based shipping cost on product page
Is it possible to display the weight based shipping cost on the product page, I saw there are extensions that adds the shipping estimator to the product page but I don't need that really, I just need to display the shipping cost on the product page for the weight based shipping I am using opencart 3...
Jump to post- Mon Dec 23, 2024 12:18 am
- Replies 3
- Views 598
Re: display out of stock or stock figure
I am trying to display the text out of stock if the product quantity is 0 or if there is stock quantity greater than 0 then to display the stock number and the words in stock after the number on the product page I have the following so far but it's only partly working, it's outputting out of stock ...
Jump to post- Mon Dec 16, 2024 3:22 am
- Replies 2
- Views 337
[SOLVED] display out of stock or stock figure
I am trying to display the text out of stock if the product quantity is 0 or if there is stock quantity greater than 0 then to display the stock number and the words in stock after the number on the product page I have the following so far but it's only partly working, it's outputting out of stock i...
Jump to post- Mon Dec 16, 2024 1:31 am
- Replies 2
- Views 337
Re: admin order email without logo and layout
Thank you, I'll email you in 5 minutes if ok Jump to post
- Fri Dec 13, 2024 7:45 pm
- Replies 9
- Views 535
Re: admin order email without logo and layout
I did find a modified 2.3.0.2 at https://github.com/condor2/Opencart_23xx but unsure how to use it Only other thing I can think of is doing a new opencart 3.0.4.0 site and making it look the same and install the same or very similar extensions again but my biggest headache is importing the customers...
Jump to post- Fri Dec 13, 2024 7:30 pm
- Replies 9
- Views 535
Re: admin order email without logo and layout
I can't go back to php 7, it's only got 8.1, 8.2 and 8.3 Jump to postJNeuhoff wrote: ↑Fri Dec 13, 2024 7:07 pmYes, because OpenCart 2 doesn't support PHP 8.2.ianhaney50 wrote: ↑Fri Dec 13, 2024 6:32 pmI just had a look and it says 8.2. Should I put it back to something like 7.4?
- Fri Dec 13, 2024 7:19 pm
- Replies 9
- Views 535
Re: admin order email without logo and layout
I just had a look and it says 8.2. Should I put it back to something like 7.4? Jump to post
- Fri Dec 13, 2024 6:32 pm
- Replies 9
- Views 535
admin order email without logo and layout
This is a new issue on me to do with one of my customers sites in opencart 2.3.0.2 Their admin order emails have started to come through without the logo and the layout has gone as well, it now looks like it's all in one line and in the email they forwarded onto me, I can see all the HTML code It lo...
Jump to post- Fri Dec 13, 2024 4:32 pm
- Replies 9
- Views 535
Re: display product options on featured module
Sorry yeah I solved it, I'll mark it solved now
Jump to post- Fri Dec 13, 2024 3:20 am
- Replies 5
- Views 332
Re: display product options on featured module
Sorry sorted it, In catalog/controller/extension/module/featured.php I changed the line below from 'options' => $this->model_catalog_product->getProductOptions($result['product_id']), TO 'options' => $this->model_catalog_product->getProductOptions($product_info['product_id']),
Jump to post- Thu Dec 12, 2024 6:29 pm
- Replies 5
- Views 332
Re: display product options on featured module
Sorry how do I find that out, do I need to use echo? Jump to postADD Creative wrote: ↑Thu Dec 12, 2024 5:41 pmIs there a $result['product_id'], or do you mean to use $product_id?
- Thu Dec 12, 2024 5:44 pm
- Replies 5
- Views 332
[SOLVED] display product options on featured module
I'm trying to get the product options displayed on the featured module, I copied the code that is from the category pages as I got the product options displayed on the category page so thought it would be the same thing so copied the code to the relevant files but it's not showing the product option...
Jump to post- Thu Dec 12, 2024 5:08 pm
- Replies 5
- Views 332
Re: shopping cart not updating/refreshing when delete product
It looks like your electronics theme uses its own common.js: catalog/view/theme/electronic/js/common.js it doesn't use the catalog/view/javascript/common.js Hence, changing the latter won't make any difference. In any case, you shouldn't use SEO Urls for the checkout cart events in the first place,...
Jump to post- Sun Dec 08, 2024 1:13 pm
- Replies 20
- Views 606
Re: shopping cart not updating/refreshing when delete product
It looks like your electronics theme uses its own common.js: catalog/view/theme/electronic/js/common.js it doesn't use the catalog/view/javascript/common.js Hence, changing the latter won't make any difference. In any case, you shouldn't use SEO Urls for the checkout cart events in the first place,...
Jump to post- Sun Dec 08, 2024 6:19 am
- Replies 20
- Views 606
Re: shopping cart not updating/refreshing when delete product
I've checked the console log in chrome but it's already got two errors showing before I clicked the delete button
The errors it shows are below
Uncaught (in promise) Error: QUOTA_BYTES quota exceeded
Uncaught (in promise) Error: Could not establish connection. Receiving end does not exist.
- Sun Dec 08, 2024 2:41 am
- Replies 20
- Views 606
Re: shopping cart not updating/refreshing when delete product
I've put the following code back into the common.js file but it's not showing anything in the console tab in firefox console.log(getURLVar('route')); if ($(getURLVar).attr('route') == 'https://shop.it-doneright.co.uk/cart' || $(getURLVar).attr('route') == 'https://shop.it-doneright.co.uk/checkout') ...
Jump to post- Sun Dec 08, 2024 2:02 am
- Replies 20
- Views 606
Re: shopping cart not updating/refreshing when delete product
Well, maybe put: console.log(getURLVar('route')); before that redirect logic and see what it says in your web dev tools console when you click remove. Your cart update seems to work but remove still goes to https://www.it-doneright.co.uk/shop/index.php?route=common/cart/info which means it does not...
Jump to post- Sun Dec 08, 2024 1:31 am
- Replies 20
- Views 606