prestamax Posted January 22, 2017 Share Posted January 22, 2017 Hi, I am wondering if there is a tag cloud for prestashop 1.7.X ? Link to comment Share on other sites More sharing options...
Luigi Usai Posted February 7, 2017 Share Posted February 7, 2017 Hi, I am wondering if there is a tag cloud for prestashop 1.7.X ? I have the same question :-) Should we start programming by ourself our modules? Dr. Luigi Usai www.stryggy.com Link to comment Share on other sites More sharing options...
genetica Posted February 14, 2017 Share Posted February 14, 2017 Its incredible that there is no tag clouds or tag filter in prestashop 1.7. Really really bad!!! Really NO WORDS! Link to comment Share on other sites More sharing options...
w3bsolutions Posted February 14, 2017 Share Posted February 14, 2017 Attached is a tags block for PS 1.7 (just 1.6 version adapted to make it work in 1.7 and match with classic theme). Cheers. blocktags.zip 6 1 1 1 Link to comment Share on other sites More sharing options...
prestamax Posted February 26, 2017 Author Share Posted February 26, 2017 Thank you w3bsolutions. For some reasons the tag cloud won't show up on the category page even though it is hooked to the left column. Actually I think prestashop 1.7 is not ready for use yet. Link to comment Share on other sites More sharing options...
w3bsolutions Posted February 26, 2017 Share Posted February 26, 2017 Thank you w3bsolutions. For some reasons the tag cloud won't show up on the category page even though it is hooked to the left column. Actually I think prestashop 1.7 is not ready for use yet. Only on the category page? it shows up fine on other pages? I tested and it was showing ok everywhere. Link to comment Share on other sites More sharing options...
Geimsdin Posted March 20, 2017 Share Posted March 20, 2017 Attached is a tags block for PS 1.7 (just 1.6 version adapted to make it work in 1.7 and match with classic theme). Cheers. Hi w3bsolutions I've just installed your module, it works but displays all the tags on a column, do you have any version where tags are spreaded in the box? Thanks in advance, Simone Link to comment Share on other sites More sharing options...
w3bsolutions Posted March 21, 2017 Share Posted March 21, 2017 Hi w3bsolutions I've just installed your module, it works but displays all the tags on a column, do you have any version where tags are spreaded in the box? Thanks in advance, Simone Are you using custom template? It was adapted to spread in the box with default template. You can just modify the css to match your needs. Link to comment Share on other sites More sharing options...
Geimsdin Posted March 21, 2017 Share Posted March 21, 2017 Are you using custom template? It was adapted to spread in the box with default template. You can just modify the css to match your needs. I'm using another template, you can see the result of my tests here: cobutokyo.com Can you please suggest me how to use CSS to create random tags displacement? I would be grateful. Thanks in advance, Simone Link to comment Share on other sites More sharing options...
Rynraf Posted October 28, 2017 Share Posted October 28, 2017 I'm testing configuration of Prestashop 1.7 (axactly on 1.7.2.2 version). a) I've just installed blocktags module. First strange thing - after installing it - my layout configuration for index and product page changed from two columns version again to deafult full width option... hm Nevermind. I changed this again and it works. I assigned this module to hook displayLeftColumn. Why there is no option to assigned this module also to displayLeftColumnProduct hook? How to acheive this? c) A little funny... maybe it's solutions for someone who have problem with displaying this module at front At the begginig I thought that it not works because any tags appeard in my left column. I'm just testing raw Prestashop installation with oryginal demo data. And in default test products have no tags It's enough to add any in any product Maybe this help someone Thank you for adapting this module for PS 1.7! Link to comment Share on other sites More sharing options...
dogbytes.ch Posted November 6, 2017 Share Posted November 6, 2017 HI Do you have the blocktags module for 1.7? Like to download it. Thank you Urs On 14.2.2017 at 1:16 PM, w3bsolutions said: Attached is a tags block for PS 1.7 (just 1.6 version adapted to make it work in 1.7 and match with classic theme). Cheers. blocktags.zip Link to comment Share on other sites More sharing options...
chronicrd Posted December 26, 2017 Share Posted December 26, 2017 The BEST solution is The Amazzing Filter. Installed it on a client's site and it is the best filtering option ever! I know this was for a Tag Cloud, but when I saw the mention for filtering options in PrestaShop 1.7, I found your post and thought it wouldn't hurt to recommend. You don't need a Tag Cloud with The Amazzing Filter. You can get it from the PS Add-Ons marketplace. Link to comment Share on other sites More sharing options...
TinyStore Posted February 9, 2018 Share Posted February 9, 2018 Thanks for sharing this. I'm really surprised the filter isn't builtin. The Amazzing Filter looks awesome but the price is ridiculous. Link to comment Share on other sites More sharing options...
TinyStore Posted February 21, 2018 Share Posted February 21, 2018 I made a modification to keep tags when searching. Here are the files modified. modules/ps_searchbar/ps_searchbar.php After: if (!array_key_exists('search_string', $this->context->smarty->getTemplateVars())) { $widgetVariables['search_string'] = ''; } Add: if (!array_key_exists('search_tag', $this->context->smarty->getTemplateVars())) { $widgetVariables['search_tag'] = ''; } themes/classic/modules/ps_searchbar/ps_searchbar.tpl After: <input type="hidden" name="controller" value="search"> Add: <input type="hidden" name="tag" value="{$search_tag}"> 1 Link to comment Share on other sites More sharing options...
TinyStore Posted July 6, 2018 Share Posted July 6, 2018 (edited) If you don't want duplicate tags with groups enabled then you will need to override the getMainTags. In override/classes I created a Tag.php file and have <?php /** * Class TagCore */ class Tag extends TagCore { /** * Get main tags * * @param int $idLang Language ID * @param int $nb number * * @return array|false|mysqli_result|null|PDOStatement|resource */ public static function getMainTags($idLang, $nb = 10) { $context = Context::getContext(); return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT t.name, counter AS times FROM `'._DB_PREFIX_.'tag` t LEFT JOIN `'._DB_PREFIX_.'tag_count` pt ON (t.id_tag = pt.id_tag) WHERE pt.id_group = 0 AND pt.`id_lang` = '.(int) $idLang.' AND pt.`id_shop` = '.(int) $context->shop->id.' ORDER BY times DESC LIMIT '.(int) $nb); } } removed /app/cache/prod/class_index.php for the override to work Edited July 8, 2018 by TinyStore Changed query to only show active tags (see edit history) 1 Link to comment Share on other sites More sharing options...
mik69 Posted July 20, 2018 Share Posted July 20, 2018 Hi, thanks for your module. It works on 1.7. But i would like to show tags on product page (no in left column). Is it possible ? Thanks. Link to comment Share on other sites More sharing options...
digle Posted February 24, 2020 Share Posted February 24, 2020 On 2/14/2017 at 1:16 PM, w3bsolutions said: Attached is a tags block for PS 1.7 (just 1.6 version adapted to make it work in 1.7 and match with classic theme). Cheers. blocktags.zip 11.01 kB · 321 downloads Hi, is it a possible you to share this module once again, please? :) Link to comment Share on other sites More sharing options...
w3bsolutions Posted March 10, 2020 Share Posted March 10, 2020 On 2/24/2020 at 10:55 AM, digle said: Hi, is it a possible you to share this module once again, please? Whut?? You just have to click on the zip link and it downloads... Link to comment Share on other sites More sharing options...
MJ_C Posted January 22, 2021 Share Posted January 22, 2021 (edited) Thankyou so much for this module. I have installed and all works fine but I cannot seem to get randomize to work correctly. I am using ps 1.7.6.7. I have tried clearing cache, in case that made a difference, but still no change to the order. I manually adjusted the code in the php so "&& Configuration::updateValue('BLOCKTAGS_RANDOMIZE', true)". This had an effect of changing the order, but still stays in this new order. Not sure why as it was just the configuration section. Any ideas please ?? Edited January 22, 2021 by Maldon Jewellery (see edit history) Link to comment Share on other sites More sharing options...
Zohaib-fk Posted April 24, 2021 Share Posted April 24, 2021 Thanks w3bsolutions for sharing module. It works fine on my website URL => https://www.hrms-systems.com/presta-store/en/13-free-modules Link to comment Share on other sites More sharing options...
MJ_C Posted April 24, 2021 Share Posted April 24, 2021 Hello @Zohaib-fk Just tried your site and refreshed the paged a number of times but the order of the tag cloud list doesn't change at all. I am trying to get the randomise to work correctly. If anyone has any ideas then please let me know. Link to comment Share on other sites More sharing options...
Zohaib-fk Posted April 24, 2021 Share Posted April 24, 2021 Hello Maldon, Thanks for your message. I will check in code functionality related random order of the tags and try to make it work. 1 Link to comment Share on other sites More sharing options...
ZHSoft Posted May 26, 2021 Share Posted May 26, 2021 Advanced Product Tags Pro | SEO internal link promotion Module Display the product tag on the product page, which will help customers filter the product, increase the search engine spider crawl and thus improve the site SEO ranking, background support custom product tag URL,compatible with Google sitemap module. Link to comment Share on other sites More sharing options...
MJ_C Posted May 28, 2021 Share Posted May 28, 2021 (edited) I purchased this module yesterday @ZHSoft "Advanced Product Tags Pro | SEO internal link promotion Module" and does a great job. I was apprehensive at first, and the first version of the module saved the tags after saving the product. I pointed out to the developer that it was not very automated and within a few hours they had added functionality to make it automated and a one click solution. My server is a shared server and very slow and they suggested a change and today was version 1.0.3 which has just finished creating all the tags. Thanks for the great assistance and help. Edited May 28, 2021 by Maldon Jewellery (see edit history) Link to comment Share on other sites More sharing options...
ZHSoft Posted June 8, 2021 Share Posted June 8, 2021 On 5/28/2021 at 10:52 PM, Maldon Jewellery said: I purchased this module yesterday @ZHSoft "Advanced Product Tags Pro | SEO internal link promotion Module" and does a great job. I was apprehensive at first, and the first version of the module saved the tags after saving the product. I pointed out to the developer that it was not very automated and within a few hours they had added functionality to make it automated and a one click solution. My server is a shared server and very slow and they suggested a change and today was version 1.0.3 which has just finished creating all the tags. Thanks for the great assistance and help. Yes, as I said, we are transferred to PrestaShop developers, we have a strong technical support team and agile response capabilities. A very pleasant cooperation~ Link to comment Share on other sites More sharing options...
Melanie471 Posted June 8, 2021 Share Posted June 8, 2021 On 4/24/2021 at 2:28 PM, Zohaib-fk said: Thanks w3bsolutions for sharing module. It works fine on my website URL => https://www.hrms-systems.com/presta-store/en/13-free-modules prêt Hello, I have 2 sites and I would like some help to guide me if possible. Thank you To read you Link to comment Share on other sites More sharing options...
globals Posted January 21, 2022 Share Posted January 21, 2022 En 14/2/2017 a las 1:16 PM, w3bsolutions dijo: Attached is a tags block for PS 1.7 (just 1.6 version adapted to make it work in 1.7 and match with classic theme). Cheers. blocktags.zip 11.01 kB · 480 downloads Many thanks! 1 Link to comment Share on other sites More sharing options...
Shin_P Posted January 23, 2023 Share Posted January 23, 2023 hi everyone and thank you for this updated module can anyone tell me why the module is showing only 4 tags? (I have many more) Tag::getMainTags is returning only 4 results and its driving me crazy (on 1.6 everything was running fine) Link to comment Share on other sites More sharing options...
ZHSoft Posted February 21, 2023 Share Posted February 21, 2023 On 1/23/2023 at 7:16 PM, Shin_P said: hi everyone and thank you for this updated module can anyone tell me why the module is showing only 4 tags? (I have many more) Tag::getMainTags is returning only 4 results and its driving me crazy (on 1.6 everything was running fine) It seems you need custom development, change the source code. Or try this: Advanced Product Tags Pro | SEO internal link promotion Module Display the product tag on the product page, which will help customers filter the product, increase the search engine spider crawl and thus improve the site SEO ranking, background support custom product tag URL,compatible with Google sitemap module. Link to comment Share on other sites More sharing options...
Prestachio Posted January 1 Share Posted January 1 Hi, does someone maybe have a fixed/improved version for PS 1.7? Somehow it shows always only the same 7 tags on category pages. On product pages I'm not seeing anything. But thanks for the module Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now