How to Use the Featured Module?
19 posts
• Page 1 of 1
How to Use the Featured Module?
Hello Everyone new to opencart.. Looking pretty good. Hope Community Support is helpful:)
How do you put items on the featured module?
Is there something I have to add to the Product (Autocomplete) section?
How do you put items on the featured module?
Is there something I have to add to the Product (Autocomplete) section?
Running Opencart v1.5.1.3 http://www.wickedstangsperformanceshop.com
- wickedstangs
- Posts: 31
- Joined: Sat Oct 22, 2011 4:16 am
Re: How to Use the Featured Module?
Modules > Featured
start typing the product name in the input field.
start typing the product name in the input field.
-

sinbad - Posts: 40
- Joined: Sun Oct 23, 2011 4:52 am
Re: How to Use the Featured Module?
sinbad wrote:Modules > Featured
start typing the product name in the input field.
Wow, I feel dumb now:) Thanks for the help...
Running Opencart v1.5.1.3 http://www.wickedstangsperformanceshop.com
- wickedstangs
- Posts: 31
- Joined: Sat Oct 22, 2011 4:16 am
Re: How to Use the Featured Module?
Hi.
I can use featured module with no problem in 1.5.1.3 version but in 1.5.1.2 I cannot add any products into it. It dont autocomplete and it dont work with full product name either. I have tested this now in three different default installations, with latest FF and IE. Is there something changed in the version that could have something to do with server settings or what could be the reason?
Is there any workaround how to add products there manually, if I can not get it to work?
I can use featured module with no problem in 1.5.1.3 version but in 1.5.1.2 I cannot add any products into it. It dont autocomplete and it dont work with full product name either. I have tested this now in three different default installations, with latest FF and IE. Is there something changed in the version that could have something to do with server settings or what could be the reason?
Is there any workaround how to add products there manually, if I can not get it to work?
- JonathanM
- Posts: 24
- Joined: Thu Jul 28, 2011 1:08 pm
Re: How to Use the Featured Module?
ask your server host to install mb_string() php module
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: How to Use the Featured Module?
JonathanM wrote:Hi.
I can use featured module with no problem in 1.5.1.3 version but in 1.5.1.2 I cannot add any products into it. It dont autocomplete and it dont work with full product name either. I have tested this now in three different default installations, with latest FF and IE. Is there something changed in the version that could have something to do with server settings or what could be the reason?
Is there any workaround how to add products there manually, if I can not get it to work?
I am seeing this issue too on another persons site. I was going to upgrade them to 1.5.1.3 but perhaps uksitebuilder's clue will help

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18210
- Joined: Mon Jul 21, 2008 7:02 pm

Re: How to Use the Featured Module?
My host says that php-mbstring is already at the current version.
- JonathanM
- Posts: 24
- Joined: Thu Jul 28, 2011 1:08 pm
Re: How to Use the Featured Module?
Update: Installing this mbstring did fix it, so thanks a lot for the info!
Here is link how to do it if anyone else needs it installed in WHM:
http://serverfault.com/questions/149122/whm-cpanel-enable-install-mbstring-module
But now I encounter another problem. I have "make offer" module installed and after I add featured product, I get this following error: (shop still looks ok and featured item is visible)
Notice: Undefined variable: result in /home/mysite/public_html/vqmod/vqcache/vq2-catalog_controller_module_featured.php on line 51
Notice: Undefined variable: result in /home/mysite/public_html/vqmod/vqcache/vq2-catalog_controller_module_featured.php on line 53
Here is the code from line 51 forward in that file:
I would be super super grateful if anyone could find a fix for it.
Here is link how to do it if anyone else needs it installed in WHM:
http://serverfault.com/questions/149122/whm-cpanel-enable-install-mbstring-module
But now I encounter another problem. I have "make offer" module installed and after I add featured product, I get this following error: (shop still looks ok and featured item is visible)
Notice: Undefined variable: result in /home/mysite/public_html/vqmod/vqcache/vq2-catalog_controller_module_featured.php on line 51
Notice: Undefined variable: result in /home/mysite/public_html/vqmod/vqcache/vq2-catalog_controller_module_featured.php on line 53
Here is the code from line 51 forward in that file:
- Code: Select all
$discounts = $this->model_catalog_product->getProductDiscounts($result['product_id']);
$this->load->model('fido/make_offer');
if ($this->config->get('make_offer_status') && ($this->model_fido_make_offer->getOfferedProduct($result['product_id']) || $this->config->get('make_offer_all_products') || ($this->config->get('make_offer_zero_price') && ($result['price'] == 0)))) {
$make_offer = true;
} else {
$make_offer = false;
}
I would be super super grateful if anyone could find a fix for it.

- JonathanM
- Posts: 24
- Joined: Thu Jul 28, 2011 1:08 pm
Re: How to Use the Featured Module?
Probably best to PM Fido-X on this error, I believe it is his module
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: How to Use the Featured Module?
Hello,
My auto complete function is not working either - not in Featured products, nor in Related ones. And I am using OC1.5.1.3 version + eCart theme. What may cause the problem?
My auto complete function is not working either - not in Featured products, nor in Related ones. And I am using OC1.5.1.3 version + eCart theme. What may cause the problem?
- misscaprice
- Posts: 36
- Joined: Sat Jan 22, 2011 10:47 am
Re: How to Use the Featured Module?
Well there is no answer from Fido-X, like was expected. They dont have time or interest to give any kind of support anymore. I have also tested with different versions with same results, so its fair to say Make Offer it is not compatible with featured. Maybe thats why they also disabled featured module in their demo site.
Now the options are that some kind soul would figure out the fix for this, or then need to find some other extension to present group of sertain products in the front page. Anyone willing to look deeper into code?
Now the options are that some kind soul would figure out the fix for this, or then need to find some other extension to present group of sertain products in the front page. Anyone willing to look deeper into code?
- JonathanM
- Posts: 24
- Joined: Thu Jul 28, 2011 1:08 pm
Re: How to Use the Featured Module?
misscaprice wrote:Hello,
My auto complete function is not working either - not in Featured products, nor in Related ones. And I am using OC1.5.1.3 version + eCart theme. What may cause the problem?
Does it work in default shop, before installing the theme? Then you would know if the problem has to do with your server or with the theme or extension.
- JonathanM
- Posts: 24
- Joined: Thu Jul 28, 2011 1:08 pm
Re: How to Use the Featured Module?
As far as I remember it was not working in the fresh install either.
The hosting company told me that mb_string() php module is already installed. Anyone have a clue on the problem?
The hosting company told me that mb_string() php module is already installed. Anyone have a clue on the problem?
- misscaprice
- Posts: 36
- Joined: Sat Jan 22, 2011 10:47 am
Re: How to Use the Featured Module?
Alas JonathanM without seeing the code it is nigh on impossible to debug, and as it is a commercial mod you purchased, you should try to persevere with Fido-X - He is a long standing community member since the days of Y'or so I'm sure he will contact you soon. Maybe he is on holiday or something
@misscaprice - See this post to test if mbstring truly is installed -> viewtopic.php?f=20&t=41481&p=199789#p199755
@misscaprice - See this post to test if mbstring truly is installed -> viewtopic.php?f=20&t=41481&p=199789#p199755
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: How to Use the Featured Module?
Well just tried this. What I receive is
Does this mean it is not installed? the guy from the server support double checked it
aeiou
Does this mean it is not installed? the guy from the server support double checked it
- misscaprice
- Posts: 36
- Joined: Sat Jan 22, 2011 10:47 am
Re: How to Use the Featured Module?
misscaprice wrote:As far as I remember it was not working in the fresh install either.
The hosting company told me that mb_string() php module is already installed. Anyone have a clue on the problem?
My host also said it is installed, but when I check myself it was not. I dont know much at all about running a server, but I managed to google and find out how to check it in my server. My support actually admit in second message that they are not familiar with the module I am talking about. It was related to EasyApache (Apache Update) in my case.
- JonathanM
- Posts: 24
- Joined: Thu Jul 28, 2011 1:08 pm
Re: How to Use the Featured Module?
Well, the characters appear with the apostrophes just like UKsitebuilder shows.
So, the php module is working.
My OC version is the newest 1.5.1.3
And auto-complete is still not working.
Do you have any other ideas?
So, the php module is working.
My OC version is the newest 1.5.1.3
And auto-complete is still not working.
Do you have any other ideas?
- misscaprice
- Posts: 36
- Joined: Sat Jan 22, 2011 10:47 am
Re: How to Use the Featured Module?
I dont know what is wrong then. Actually for my understanding 1.5.1.3 version should not even require mbstring for autocomplete to work. Autocomplete worked well in my 1.5.1.3 shop even mbstring was not turned on that time. Only 1.5.1.2 needed that in my server. Have you tried reinstalling shop? (long shot, I know)
- JonathanM
- Posts: 24
- Joined: Thu Jul 28, 2011 1:08 pm
Re: How to Use the Featured Module?
Ok, finally get it working. Was issue with the theme.
Jonathan and uksitebuilder, thanks a lot for ideas. Reinstalling, oh no, it was the last possible option. Done too much coding into the system
Jonathan and uksitebuilder, thanks a lot for ideas. Reinstalling, oh no, it was the last possible option. Done too much coding into the system

- misscaprice
- Posts: 36
- Joined: Sat Jan 22, 2011 10:47 am
19 posts
• Page 1 of 1
Who is online
Users browsing this forum: allenmcb, Danni2013, kabatza1, Majestic-12 [Bot], misirian, sdaweb, srunyon1, victorj and 87 guests













