(NEW RELEASE) Admin's New Order Model Search
Creates A new search field named model on Administrator's New Order Form. Installing this module will allow you to search products either by name or by Model. And then Added them to Cart. Supports Autocomplete and works together with already Opencart's Search Product Name Field Find it on Opencart's...
Jump to post- Fri Jul 13, 2018 7:38 pm
- Replies 0
- Views 776
NEW RELEASE Shipping Extended
Add as many Shipping Methods as your Online shop needs! Set them available based on Cart's Weight or Cart's Sub Total. Set Custom Instruction Messages on Every Installed Language and define flat shipping Cost or Based on weight Cost Invidually. Full Instructions Included Parameters Shipping Name Ena...
Jump to post- Fri Jul 13, 2018 7:36 pm
- Replies 0
- Views 693
Re: Κατάλληλο Hosting για υποστήριξη opencart
Δεν έίχα ποτέ λογαριασμό στο παπάκι αλλά σίγουρα είναι πολύ οικονομικό. Αν θέλεις δοκίμασε και δες τιμές στην TopHost όπου σε όλα της τα πακέτα σου δίνουν και SSL. Εγω είμαι πολύ ικανοποιημένος. Σημασία έχει όποιο πλάνο φιλοξενίας και να επιλέξεις να υπάρχει δυνατότητα εύκολης επέκτασης. (αν χρεαστε...
Jump to post- Fri Jul 06, 2018 6:52 pm
- Replies 2
- Views 4229
(Updated) Admin Category/Manufacturer/Attribute Filter (OCMOD) by SDS
Admin Category/Manufacturer/Attribute Filter (OCMOD) by SDS Adds Category, Attribute And Manufacturer Filter to Product List Page on Admin's Panel. Features Attribute , Category , Manufacturer Filter Filter on Products With no Category-Manufacturer-Attribute just by pressing "/" Sorting o...
Jump to post- Sun May 06, 2018 6:19 am
- Replies 0
- Views 1370
(Released) Bank Transfer Extended
Bank Transfer Extended Improves basic Opencart's Bank Transfer Payment Method Features Easy Installation via Opencart's Installer Define as many Banks you want each of them with different payment instructions on every installed language Enable /disable banks Enable /disable banks based on total , g...
Jump to post- Fri May 04, 2018 8:22 pm
- Replies 0
- Views 1386
Re: transaction with bank transfer ,choose bank
Take a look the above extension. it might solves your issue. We are planning to release it for OpenCart 3 Platform as well. This extension allows to insert as many banks as you need. During checkout customer must choose the bank that will make the transfer. https://www.opencart.com/index.php?route=m...
Jump to post- Wed Mar 07, 2018 4:41 am
- Replies 5
- Views 2625
Re: "Add new" button is missing in Category list
Hello! You need to post
1. Your Opencart's Version
2. Any extensions / themes that might affect your admin panel
also check your error log and post it here if there is any error.
- Fri Jun 23, 2017 3:44 pm
- Replies 1
- Views 309
Re: Sort products by date - admin
You can check the module victorj mentioned which is free and seems nice.
Or you can check my module Admin Category/Manufacturer/Attribute Filter that CAN sort by date added as well among others!
- Sun Jun 18, 2017 5:16 pm
- Replies 15
- Views 6710
Re: Google Search Console cannot find site map created by Opencart
Paulfeakins!!! So true!
- Thu Jun 15, 2017 9:50 pm
- Replies 8
- Views 4863
Re: Google Search Console cannot find site map created by Opencart
Your site map is here
https://www.store.anaheimgear.com/index ... le_sitemap
- Thu Jun 15, 2017 2:44 pm
- Replies 8
- Views 4863
Re: Poor performance after moving hosts?
ofcourse it would be nice to drop us a link like the above said.
My piece of advice.. Get reliable and professional hosting service!!!!
I say that because opencart is super fast in adition to other platforms.
- Wed Jun 14, 2017 3:58 am
- Replies 5
- Views 2207
Re: What setup do you use to edit your Opencart site?
Since I remember myself I was always setting up my localserver manually. Made lots of mistakes at the beginning but eventually I earned a lot. for a quick testing enviroment if you dont have the time and the patience WAMP or XAMP sounds ok. Editor Notepad++ is good like mentioned above but right now...
Jump to post- Wed Jun 14, 2017 3:49 am
- Replies 4
- Views 1619
Re: Problem with Catalog > Product page
Hello. First whats your opencart version? - any extensions that may affect admin installed? Go to system-tools->error logs.. can you attach it here if there is any? also try to replace with original the file system->library->image.php BUT BE CAREFULL if you have any other extensions installed that m...
Jump to post- Wed Jun 14, 2017 3:42 am
- Replies 5
- Views 812
Re: Undefined variable error, please help
Try isset()
Code: Select all
<?php if (isset($sku)) { ?>
<li>SKU: <?php echo $sku; ?></li>
<?php } ?>
var_dump($product_info[$sku]); in your controller
to check if $sku really has any value Jump to post
- Tue Jun 13, 2017 2:23 pm
- Replies 3
- Views 1698
Re: I can not upload photos
You mean php.ini in your opencart's installation? it doesnt really matter what value you are gonna put there. If you are on a shared hosting and the maximum value is 32M then 32M you have!! It doesnt matter if you typed 64M or 1024M! Hope you get my point. Also you may are out of resources as well. ...
Jump to post- Tue Jun 13, 2017 2:47 am
- Replies 6
- Views 1498
Re: Problem - Google Analytics is not displayed in the source code
I know its not clean but temporarily manually add google analytic code to your footer or header Edit -> catalog/view/theme/Yourtheme/template/common/footer.tpl or header.tpl Copy and paste google analytics code there. dont forget to include the code in tags like this <script> //your Code here</scrip...
Jump to post- Mon Jun 12, 2017 10:22 pm
- Replies 6
- Views 24051
Re: Order Id and Total Amount Variable
Hello for getting id you can use $this->session->data['order_id'] and then having the id use sth like the following to get anything you want from order details $this->load->model('checkout/order'); $order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']); $data['ammount'...
Jump to post- Sat Jun 10, 2017 10:43 pm
- Replies 2
- Views 1099
Re: Problem - Google Analytics is not displayed in the source code
Hello. I can see that you are not using the default opencart theme.
Does your theme has a Settings page? Did you checked if there is an other Google analytics input there?
Also try to contact your theme author.. I think its a theme related issue
- Sat Jun 10, 2017 6:55 pm
- Replies 6
- Views 24051
Re: I can not upload photos
I watched your video and noticed the "bytes exhausted" message. This might seems that your are running out of memory . You can increase your maximum memory limit or the image your are using is huge!!! here is a tutorial i found after some googling that might solve your issue http://www.ope...
Jump to post- Fri Jun 09, 2017 7:09 pm
- Replies 6
- Views 1498
Re: Featured products in category page are different than Featured products in home page. How do I edit this?
Yes I think that too. its th different. Have you any other modules installed that might affect your front end display?
It would be better for me to understand if I had a url or at least a screenshot.
- General Support
- Featured products in category page are different than Featured products in home page. How do I edit this?
- Fri Jun 09, 2017 6:01 pm
- Replies 7
- Views 1268