Page 2 of 2
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Fri Feb 26, 2010 7:10 pm
by delorean75
good morning,
You can install this module on OpenCart version 1.4?
thanks
delorean75
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Fri Feb 26, 2010 11:40 pm
by richard211986
yes you can now but have to run the sql file in your mysql database to create the tables
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Sun Feb 28, 2010 1:43 am
by deejayp
sorry, but I put the file inside the rispect folder.. but in ADMIN/MODEL/CATALOG/PRODUCT have an error.
(version 1.4 - I use the module for this version)
I try to delete the code presente in the first row:
Protected $product_tags=array();
and the script is ok...but When I click the words presents in the BOX TAG CLOUD , all keywords are clicked (sorry for my bad english)
click here for view the problem:
http://www.eshop-webplan.com/opencart/i ... ommon/home
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Sun Feb 28, 2010 1:45 am
by deejayp
ops...now if you want to modify a product, Is impossible to view the page !!
ok... this is the problem..
If I leave this code: Protected $product_tags=array();
and I take a product, that I have not put any words (before) inside the field TAGS, and I want to modify, I have an error.
If I take a product that I have put some words (before) inside the field tags, the script is ok.
Who knows a solution to this problem !?

Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Mon Mar 01, 2010 5:18 pm
by deejayp
sorry, but there's the same problem !

Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Wed Apr 28, 2010 7:36 pm
by channelcommerce
I'm using the Tag Cloud module with version 1.4.7, is the limit supposed to limit the number of Tags displayed?
My limit is set at 10 but it is showing up to around 20 tags.
Is anyone else having the same issue? I like the Tag Cloud but it's starting to dominate the side column!
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Wed Apr 28, 2010 9:19 pm
by Xsecrets
you are correct. I goofed when I changed the queries and left the limit off. you can edit catalog/model/module/tagcloud.php
find
Code: Select all
$tagNameQuery = $this->db->query("SELECT DISTINCT tag FROM " . DB_PREFIX . "product_tags WHERE language_id=" . $this->config->get('config_language_id'));
and change it to
Code: Select all
$tagNameQuery = $this->db->query("SELECT DISTINCT tag FROM " . DB_PREFIX . "product_tags WHERE language_id=" . $this->config->get('config_language_id') . " LIMIT " . $limit);
I am going to upload a corrected version momentarily.
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Wed Apr 28, 2010 9:24 pm
by Qphoria
HOW DARE YOU!
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Wed Apr 28, 2010 9:51 pm
by channelcommerce
Thanks, that's sorted it.
Looks a lot better proportioned now!
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Wed Apr 28, 2010 10:05 pm
by migz
anybody got link to 1.4.0. cloud module? is this the same as 1.4.7 tags?
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Wed Apr 28, 2010 11:46 pm
by Qphoria
1.4.7 Tags is the actually the data. Tag Cloud is an addon that makes a cloud from the tags
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Thu Apr 29, 2010 2:01 am
by Xsecrets
migz wrote:anybody got link to 1.4.0. cloud module? is this the same as 1.4.7 tags?
there's a link in the forums somewhere to all the old extensions. The cloud generation code in the 1.4.7 module is based on the 1.4.0 module, but they are different from there. The 1.4.0 module required editing alot of files where 1.4.7 doesn't require any file edits, mostly because the tags have been moved into the core now. Also the 1.4.0 module did something on the frontend product pages. I didn't even look to see what it was because I knew I didn't feel like messing with it.
Re: [RELEASED] Product Tags + Tag Cloud Module
Posted: Thu Apr 29, 2010 2:53 am
by Qphoria
I think it also added the clickable product tags under the product. This will be added in the next version