there is just your viewer error.
the new line symbol is but no new line.
This looks interesting.
Does it do the following? If so then mention these in the description. If not then please consider adding them.
1) allow more than one parent to have the same sub categories (e.g. create and “apply to” – select from list).
2) export and import full taxonomy list, or sub lists.
3) upload the saved lists to a sharing website, so all users can share their taxonomies.
4) show the list (in the edit window), with multi column depending on screen width (responsive display).
5) find (and replace) in list or selected sublists
6) generate full map of main list and sublist. possibly also with option to show relations between similar and same members of sublists.
7a) use the map in (6) to include links or preview icons to the content that is within those subsections.
7b) show which items do not have content, or full content (e,g each item might be required to have text, image, and other media)
Thanks
]]>Seems to pause itself and not continue after a while. To keep it moving must Physically click PAUSE then CONTINUE to keep it moving. Like as if its stopping for a break, cup of tea
Happens probably after 30-50 inputs: https://prntscr.com/i08jkf
]]>Hi folks,
The documentation and this forum states that if you escape your commas with \
, the plugin will import properly.
Unfortunately, the JS that parses the terms is using .replace
, which only replaces the first instance of a matching string… _unless_ you regular expressions are employed.
So, to fix this, I made a change to the code in inspector.
I changed self._processTerms
in ‘bulk-term-generator-admin.js’ from:
self._processTerms = function( terms ){
var processedTerms = [];
// Seperate terms by comma, and trim the white space
for (var i = 0; i < terms.length; i++) {
console.log(terms[i].match(/([^,]+),([^,]+),(.*)/));
var terms_array = terms[i].replace( '\\,', '{COMMA}' ).split(',').map(function(v){return v.replace('{COMMA}',',');});
terms_array = $.map(terms_array, $.trim);
processedTerms.push(terms_array);
}
return processedTerms;
};
to:
self._processTerms = function( terms ){
var processedTerms = [];
// Seperate terms by comma, and trim the white space
for (var i = 0; i < terms.length; i++) {
console.log(terms[i].match(/([^,]+),([^,]+),(.*)/));
var terms_array = terms[i].replace( /\\,/g, '{COMMA}' ).split(',').map(function(v){return v.replace( /{COMMA}/g,',');});
terms_array = $.map(terms_array, $.trim);
processedTerms.push(terms_array);
}
return processedTerms;
};
This just changes the string in the 2 replace
calls from strings to global regular expressions.
When adding a term that already exists – nothing happens.
We were hoping this plugin would enable us to quickly update descriptions to 500 terms.
Please advise..
]]>Hi,
I’m new to WordPress and found your plugin made creating Tags Categories for *posts* really easy.
I am trying to make a Forum with *Topics* but I could not see your plugin interface there.
I would like to add 86 tags to my forum. It will take ages through the normal interface. Please can anyone advise on the easiest and quickest way to do this?
Many thanks!
]]>Nice plugin wherein I’ve loaded all my parent terms with children attached to them as per the instructions. Now for the hard part- I want to use these on the front end in 2 separate hierarchical select dropdowns so users can choose their parent state in the first, and then their child city in the second. In MS ACCESS they’re called “cascading dropdowns” and I’m very surprised at the difficulty in emulating this functionality in WordPress. I was expecting there would be a plugin that can do it but no luck thus far…Any guidance much appreciated…Thanks!
]]>Hello,
I need to have comma in my taxonomy term but as your plugin use comma to separator to import term, slug, description, my import does not work correctly.
Do you think it would be possible to use another separator in your plugin like pipe (|).
Best regards.
Is it possible to add root and child at the same time? For example, adding states to USA, and also adding cities within the states
]]>i am not able to add term in new line (row) if we paste 10 category then all are showing in one line \
really thankful to solve this issue
Loving the plugin, the only thing I’m having trouble with is “Enter each term below on its own line.” My descriptions are long so my lines are wrapping. Though I’m not adding a line break, the wrap is determining the cutoff for what gets included. Is there a file I can edit to allow more characters per line (or to prevent the word wrap from deciding where my info ends)?
Thanks,
Flo