Plugin Directory

Changeset 2933088


Ignore:
Timestamp:
07/02/2023 08:56:39 PM (3 years ago)
Author:
NCAllen
Message:

Update to version 1.3.2 from GitHub

Location:
bulk-term-generator
Files:
18 deleted
13 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bulk-term-generator/assets/banner-772x250.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bulk-term-generator/assets/icon-128x128.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bulk-term-generator/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bulk-term-generator/assets/screenshot-1.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bulk-term-generator/assets/screenshot-2.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bulk-term-generator/assets/screenshot-3.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bulk-term-generator/assets/screenshot-4.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • bulk-term-generator/tags/1.3.2/README.txt

    r2932813 r2933088  
    1 === Plugin Name ===
     1=== Bulk Term Generator - Import multiple tags, categories, and taxonomies easily ===
    22Contributors: nateallen
    33Tags: add multiple terms,bulk import,terms,tags,categories,taxonomy,add,multiple,mass,keywords,taxonomies,generate
    44Requires at least: 3.1
    55Tested up to: 6.2
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414Are you tired of manually adding terms in WordPress one by one? Do you find CSV import plugins complex and restrictive? Enter Bulk Term Generator - a revolutionary WordPress plugin designed to streamline and simplify your taxonomy management process.
    1515
    16 Bulk Term Generator allows you to seamlessly import large volumes of terms to your selected taxonomies in WordPress. Its powerful yet easy-to-use interface lets you copy and paste your terms, queue them up, and even select a parent term for hierarchy. No need for pre-formatted CSV files or meticulous manual entry. You can even specify the slug and description for each term, making your content even more search-friendly.
     16Bulk Term Generator allows you to seamlessly import multiple terms to your selected taxonomies in WordPress. Its powerful yet easy-to-use interface lets you copy and paste your terms, queue them up, and even select a parent term for hierarchy. No need for pre-formatted CSV files or meticulous manual entry. You can even specify the slug and description for each term, making your content even more search-friendly.
    1717
    1818But the magic doesn’t stop there. Bulk Term Generator gives you total control before you import your terms. With its unique 'Preview' feature, you can see exactly how your terms will be added and make any necessary changes before hitting the final "Generate Terms" button. Plus, you can edit or delete any queued term at any point with just a click.
     
    2121
    2222> "It saved me DAYS of terms input! This plugin is the number one tool for developers." – LuciaRed
    23 
     23 ---
    2424> "Recently used this for a client to import 43 terms in multiple hierarchical levels. So much quicker than going about it individually." - Brian Fischer
    25 
     25 ---
    2626> "I tried a few other plugins to bulk add taxonomy terms but none of them were intuitive. This plugin is the only one that you’ll ever need. It does everything I expected and more!" - Andrew Schultz
    2727
     
    3838== Frequently Asked Questions ==
    3939
    40 Q. I need to add a comma to my description, but this breaks things!
     40Q. I need to add a comma to my term name or description, but this breaks things!
    4141A. You can escape commas by adding backslash before it, like this: Boston\, MA
     42
     43Q. Can I edit existing terms with this plugin?
     44A. No, this plugin is currently for adding new terms only. We may add this feature in the future.
     45
     46Q. Can I set the meta fields for the terms I'm adding?
     47A. This plugin lets you set the slug and description for each term, but not other meta fields.
     48
     49Q: Is it possible to import terms from a specific CSV file or external data source?
     50A: Bulk Term Generator doesn't support importing terms directly from CSV files or external data sources. However, you can copy and paste your terms into the plugin's interface, making it quick and convenient to import them.
     51
     52Q: Can I schedule term imports to occur automatically at specific intervals?
     53A: Currently, Bulk Term Generator doesn't have a built-in scheduling feature to automate term imports at specific intervals. Let us know if you'd like to see this feature added in the future.
     54
     55Q: Does Bulk Term Generator handle hierarchical term structures?
     56A: Yes, Bulk Term Generator allows you to create hierarchical term structures by specifying parent terms during the import process. This feature simplifies the creation of complex taxonomies with nested terms.
     57
     58Q: Can I import terms into multiple taxonomies simultaneously?
     59A: No, currently the only way to import terms is to select a single taxonomy first. However, you can import terms into multiple taxonomies by repeating the import process for each taxonomy.
     60
     61Q: Can I export terms from WordPress using Bulk Term Generator?
     62A: No, Bulk Term Generator is primarily focused on importing terms into WordPress. It doesn't provide an export functionality. For exporting terms, you may consider using other WordPress plugins or built-in WordPress export tools.
    4263
    4364== Screenshots ==
     
    4970
    5071== Changelog ==
     72
     73= 1.3.2 =
     74* Fixed comma escaping only escapes first comma
     75* Updated the FAQ
    5176
    5277= 1.3.1 =
  • bulk-term-generator/tags/1.3.2/bulk-term-generator.php

    r2932813 r2933088  
    1010 *
    1111 * @wordpress-plugin
    12  * Plugin Name:       Bulk Term Generator
     12 * Plugin Name:       Bulk Term Generator - Import multiple tags, categories, and taxonomies easily
    1313 * Plugin URI:        http://nateallen.com/wordpress-plugins/bulk-term-generator
    14  * Description:       Provides the ability to add terms to taxonomies in bulk
    15  * Version:           1.3.1
     14 * Description:       Streamline taxonomy management in WordPress with Bulk Term Generator, your free tool for easy, bulk term importing.
     15 * Version:           1.3.2
    1616 * Requires at least: 3.1
    1717 * Tested up to:      6.2
  • bulk-term-generator/tags/1.3.2/views/admin/js/bulk-term-generator-admin.js

    r2932813 r2933088  
    359359            for (var i = 0; i < terms.length; i++) {
    360360                console.log(terms[i].match(/([^,]+),([^,]+),(.*)/));
    361                 var terms_array = terms[i].replace('\\,', '{COMMA}').split(',').map(function (v) {
    362                     return v.replace('{COMMA}', ',');
    363                 });
     361                var terms_array = terms[i].replace( /\\,/g, '{COMMA}' ).split(',').map(function(v){return v.replace( /{COMMA}/g,',');});
    364362                terms_array = $.map(terms_array, $.trim);
    365363                processedTerms.push(terms_array);
  • bulk-term-generator/trunk/README.txt

    r2932813 r2933088  
    1 === Plugin Name ===
     1=== Bulk Term Generator - Import multiple tags, categories, and taxonomies easily ===
    22Contributors: nateallen
    33Tags: add multiple terms,bulk import,terms,tags,categories,taxonomy,add,multiple,mass,keywords,taxonomies,generate
    44Requires at least: 3.1
    55Tested up to: 6.2
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414Are you tired of manually adding terms in WordPress one by one? Do you find CSV import plugins complex and restrictive? Enter Bulk Term Generator - a revolutionary WordPress plugin designed to streamline and simplify your taxonomy management process.
    1515
    16 Bulk Term Generator allows you to seamlessly import large volumes of terms to your selected taxonomies in WordPress. Its powerful yet easy-to-use interface lets you copy and paste your terms, queue them up, and even select a parent term for hierarchy. No need for pre-formatted CSV files or meticulous manual entry. You can even specify the slug and description for each term, making your content even more search-friendly.
     16Bulk Term Generator allows you to seamlessly import multiple terms to your selected taxonomies in WordPress. Its powerful yet easy-to-use interface lets you copy and paste your terms, queue them up, and even select a parent term for hierarchy. No need for pre-formatted CSV files or meticulous manual entry. You can even specify the slug and description for each term, making your content even more search-friendly.
    1717
    1818But the magic doesn’t stop there. Bulk Term Generator gives you total control before you import your terms. With its unique 'Preview' feature, you can see exactly how your terms will be added and make any necessary changes before hitting the final "Generate Terms" button. Plus, you can edit or delete any queued term at any point with just a click.
     
    2121
    2222> "It saved me DAYS of terms input! This plugin is the number one tool for developers." – LuciaRed
    23 
     23 ---
    2424> "Recently used this for a client to import 43 terms in multiple hierarchical levels. So much quicker than going about it individually." - Brian Fischer
    25 
     25 ---
    2626> "I tried a few other plugins to bulk add taxonomy terms but none of them were intuitive. This plugin is the only one that you’ll ever need. It does everything I expected and more!" - Andrew Schultz
    2727
     
    3838== Frequently Asked Questions ==
    3939
    40 Q. I need to add a comma to my description, but this breaks things!
     40Q. I need to add a comma to my term name or description, but this breaks things!
    4141A. You can escape commas by adding backslash before it, like this: Boston\, MA
     42
     43Q. Can I edit existing terms with this plugin?
     44A. No, this plugin is currently for adding new terms only. We may add this feature in the future.
     45
     46Q. Can I set the meta fields for the terms I'm adding?
     47A. This plugin lets you set the slug and description for each term, but not other meta fields.
     48
     49Q: Is it possible to import terms from a specific CSV file or external data source?
     50A: Bulk Term Generator doesn't support importing terms directly from CSV files or external data sources. However, you can copy and paste your terms into the plugin's interface, making it quick and convenient to import them.
     51
     52Q: Can I schedule term imports to occur automatically at specific intervals?
     53A: Currently, Bulk Term Generator doesn't have a built-in scheduling feature to automate term imports at specific intervals. Let us know if you'd like to see this feature added in the future.
     54
     55Q: Does Bulk Term Generator handle hierarchical term structures?
     56A: Yes, Bulk Term Generator allows you to create hierarchical term structures by specifying parent terms during the import process. This feature simplifies the creation of complex taxonomies with nested terms.
     57
     58Q: Can I import terms into multiple taxonomies simultaneously?
     59A: No, currently the only way to import terms is to select a single taxonomy first. However, you can import terms into multiple taxonomies by repeating the import process for each taxonomy.
     60
     61Q: Can I export terms from WordPress using Bulk Term Generator?
     62A: No, Bulk Term Generator is primarily focused on importing terms into WordPress. It doesn't provide an export functionality. For exporting terms, you may consider using other WordPress plugins or built-in WordPress export tools.
    4263
    4364== Screenshots ==
     
    4970
    5071== Changelog ==
     72
     73= 1.3.2 =
     74* Fixed comma escaping only escapes first comma
     75* Updated the FAQ
    5176
    5277= 1.3.1 =
  • bulk-term-generator/trunk/bulk-term-generator.php

    r2932813 r2933088  
    1010 *
    1111 * @wordpress-plugin
    12  * Plugin Name:       Bulk Term Generator
     12 * Plugin Name:       Bulk Term Generator - Import multiple tags, categories, and taxonomies easily
    1313 * Plugin URI:        http://nateallen.com/wordpress-plugins/bulk-term-generator
    14  * Description:       Provides the ability to add terms to taxonomies in bulk
    15  * Version:           1.3.1
     14 * Description:       Streamline taxonomy management in WordPress with Bulk Term Generator, your free tool for easy, bulk term importing.
     15 * Version:           1.3.2
    1616 * Requires at least: 3.1
    1717 * Tested up to:      6.2
  • bulk-term-generator/trunk/views/admin/js/bulk-term-generator-admin.js

    r2932813 r2933088  
    359359            for (var i = 0; i < terms.length; i++) {
    360360                console.log(terms[i].match(/([^,]+),([^,]+),(.*)/));
    361                 var terms_array = terms[i].replace('\\,', '{COMMA}').split(',').map(function (v) {
    362                     return v.replace('{COMMA}', ',');
    363                 });
     361                var terms_array = terms[i].replace( /\\,/g, '{COMMA}' ).split(',').map(function(v){return v.replace( /{COMMA}/g,',');});
    364362                terms_array = $.map(terms_array, $.trim);
    365363                processedTerms.push(terms_array);
Note: See TracChangeset for help on using the changeset viewer.