Şahin YILDIZ Posted March 24, 2014 Share Posted March 24, 2014 How can I do? Link to comment Share on other sites More sharing options...
prestashopninja Posted March 24, 2014 Share Posted March 24, 2014 Hi, I'm not so sure that you could do just copy&paste it using the backend. If you understand PHP a bit, the easiest method would be to code a tiny module to read each keyword and populate ps_tag table using those keywords once, and then using the generated id_tags, populate ps_product_tag table for each product (assuming the tags will be all identical for each product). Link to comment Share on other sites More sharing options...
Şahin YILDIZ Posted March 24, 2014 Author Share Posted March 24, 2014 Is it possible to turn off JavaScript or ajax? 1.5 and 1.6 versions does not ... sorry for my bad English Link to comment Share on other sites More sharing options...
prestashopninja Posted March 24, 2014 Share Posted March 24, 2014 (edited) Is it possible to turn off JavaScript or ajax? 1.5 and 1.6 versions does not ... Haha! A perfect "Turkish" approach to the problem! However, this shed a light for an even more "Turkish" solution: Here's how it's done: 1. First, write your tags separated with a comma anywhere else, for example notepad such as mytag1,mytag2,mytag3 etc. 2. Copy "mytag1,mytag2,mytag3" and paste it into the tags input field and now press comma (","). You will see that they are added as a single tag ("mytag1,mytag2,mytag3"). Don't mind it and just save. They will be magically added as separate tags. Please see the screenshots below: Edited March 24, 2014 by prestashopninja (see edit history) 1 Link to comment Share on other sites More sharing options...
Şahin YILDIZ Posted March 24, 2014 Author Share Posted March 24, 2014 yes records are defined as the individual labels thank you Link to comment Share on other sites More sharing options...
tarmogr Posted July 24, 2017 Share Posted July 24, 2017 (edited) I found a solution for that. Find: /js/jquery/plugins/jquery.tagify.js delete the content of the function so that all is left is this: /* Author: Alicia Liu */ (function ($) { $.widget("ui.tagify", { options: { delimiters: [13, 188], // what user can type to complete a tag in char codes: [enter], [comma] outputDelimiter: ',', // delimiter for tags in original input field cssClass: 'tagify-container', // CSS class to style the tagify div and tags, see stylesheet addTagPrompt: 'add tags' // placeholder text }, }); })(jQuery); Now all tags are just comma separated words which you can copy. You may have to clear cache for it to take effect. Edited July 24, 2017 by tarmogr (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts