Linux 软件免费装
Banner图

Builder Template Categories - for WordPress Page Builders

开发者 daveshine
deckerweb
wpautobahn
toolbarextras
更新时间 2019年11月13日 07:38
捐献地址: 去捐款
PHP版本: 5.6 及以上
WordPress版本: 5.3
版权: GPL-2.0-or-later
版权网址: 版权信息

标签

template categories elementor page builder blocks gutenberg templates genesis deckerweb oceanwp astra generatepress

下载

1.0.0 1.0.1 1.1.0 1.2.0 1.3.0 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.6.0 1.7.0

详情介绍:

Organize your Page Builder Templates in the WordPress Admin. Time saver, especially for bigger projects. Get a better and faster overview, don't get lost. Filter templates with your categories. With extended plugin & theme support. https://www.youtube.com/watch?v=9FhIJ2QxOoQ Out of the box the plugin includes integrations for a lot of awesome Page Builders, Themes and Plugins. If any supported integration is installed & active, the "Builder Template Categories" plugin just applies its additions. The plugin is really lightweight and simple. Just activate and you're done - and can use the categorization. ♥️ What the Plugin does? 🚀 Typical Use Case of this Plugin You are building a big site with lots of different templates across various template libraries of different plugins. Now the "Builder Template Categories" plugin helps you organize those templates better and more efficiently. For example you have a template category "Landing Pages". This category is now visible in Elementor's "My Templates", as well as in the Theme "GeneratePress" and its "Elements" Module, as well as in "PopBox for Elementor" plugin and also in "Pods" plugin's "Templates". So in every one of those libraries you can now filter and list all parts of templates for this specific post type that belong to your "Landing Pages" category. Please note: The categories are global but when filtering only those items are listed that are connected to the specific post type. See the FAQ for more info on that 🎉 Supported Page Builders 🎨 Supported Themes 🚀 Supported Plugins 📦 Supported Gutenberg-specific Plugins (Block Editor) 👍 Recommended Time Saver Try Toolbar Extras my other plugin for Site Builders and admins: Building sites with Elementor? Your work will get easier & faster with Toolbar Extras. With extended plugin & theme support baked right in. Of course, "Builder Template Categories" is integrated as well :) ℹ️ Important: Required/ Recommended for plugin usage 🌎 Translations 👍 Be a Contributor If you want to translate, go to the Translation Portal at translate.wordpress.org. You can also contribute code-wise via our Builder Template Categories GitHub Repository - and see where you can help. 📝 Documentation and Support ⚡ Liked Builder Template Categories? ☕ This Plugin ...

安装:

Minimum Requirements We Recommend Your Host Supports at least: Installation
  1. Install using the WordPress built-in Plugin installer (via Plugins > Add New - search for builder template categories), or extract the ZIP file and drop the contents in the wp-content/plugins/ directory of your WordPress installation.
  2. Activate the plugin through the 'Plugins' menu in WordPress.
  3. Go to your already active plugin or theme which has the template library and you'll see the additional template category as a new submenu item (for example: "Template Categories").
  4. Now enjoy organizing your templates, get better overview and save time ;-)

屏幕截图:

  • Template Categories for Elementor "My Templates" - Filtering for templates: 1) Dropdown of template categories, 2) Links to template categories
  • List of Template Categories - plus help info about all current active integrations
  • Edit a template category: 1) Title is the most important item; 2) Description field ist useful for internal notes or for your team of designers/ site builders etc.
  • Template categories for "Astra Custom Layouts" - Astra Theme via Astra Pro plugin
  • Template categories for "GeneratePress Elements" - GP Premium plugin (v1.7+)
  • Template categories for "OceanWP My Library" - Ocean Extra plugin
  • Edit a template - and set the template category (Example of an Elementor template)
  • Post type Bulk Actions: Add a template category to selected templates in one action step
  • Plugins page - list of all plugins - "Builder Template Categories" with link to taxonomy listing table
  • Reusable Blocks support in Block Editor (Gutenberg) in WordPress 5.0+ - post type list table (overview)
  • Editing a Reusable Block - adding the "Builder Template Categories" taxonomy via the new Block Editor JavaScript-based meta box

常见问题:

How to apply template categories in bulk?

Applying template categories to more than one template at once is easily possible: just use the built-in "Bulk Actions" from WordPress Core, which are available for any post type.

  • Go to the post type of your templates, for example "Elementor My Templates"
  • On top of the so-called overview table (Post List Table) look for Bulk Actions
  • In the table check (select) any template you want to add a category to
  • In the Bulk Actions drop-down menu, select the "Edit" action and then click the Apply button next to the drop-down --> NOTE: v1.1.0 of our plugin tweaks the label to this Edit, add Category etc. to make the whole thing more clear! :-)
  • Then assign any category you want to the selected templates
  • Don't forget to click the "Save" button once you're done
[youtube https://www.youtube.com/watch?v=KyCY-cGAB9o] original video link by plugin developer David Decker

Why is the taxonomy "global" and applied to more than one post type?

The answer is simple: Our taxonomy is only for organizing purposes if you have to manage many, many templates. It is easy to just enter 2 or more different categories if you use more than one of the supported integrations (and therefore have our taxonomy applied to more than one post type). It would add a lot of bloat to register a "organizing taxonomy" for every supported post type of an integration. This really makes absolutely no sense in my opinion. Of course, you are free to tweak the behavior of the plugin with the built-in filters or WordPress Core functions, filters, actions and classes. Plus, you can at any time easily register any custom taxonomy yourself. This plugin here is a "quick and easy" solution: install, activate, organize with categories. Done.

The category counter displays wrong number?

The counter works fine, really. The "issue" you're seeing is most likely that: you have more than one of the supported integrations active. Therefore the categories are global and applied to each of the integrations. But the terms count for the categories remains also global. Example:

  • Example Category: "Landing Pages"
  • for "Landing Pages" - Count in "Elementor My Templates": 5
  • for "Landing Pages" - Count in "Astra Custom Layouts": 10
The term counter in the taxonomy list table will always display: 15. This is the global term count. Continuing the example: When filtering in "Elementor My Templates" for "Landing Pages" you will get 5 results. Which is fully correct. These are the 5 results that are connected to this post type. The same filter in "Astra Custom Layouts" will bring 10, of course, as only these 10 terms are connected to this Layouts Post Type. And so on...! :)

Why is the Administrator Role recommended?

This plugin only works and makes sense for Administrator users just because the post types it integrates with are mostly only accessable for administrators. The target user group of this plugin are site builders, admins, developers who want to organize their admin area better, plus their website projects. To customize the capability to make the taxonomy appear in the Admin Dashboard you can use a filter: ` add_filter( 'btc/filter/capability/submenu', 'btc_custom_capability_submenu' ); /**

  • Plugin: Builder Template Categories - Custom capability.
  • @return string String ID of new capability. */ function btc_custom_capability_submenu() {
return 'edit_posts'; } // end function ` (This code snippet as a GitHub Gist)

Is Elementor required for this plugin?

Elementor (free) is not required. But once it is installed and active the integration gets loaded, meaning, the taxonomy for categorizing Elementor templates appears (My Templates Library). This will make organizing templates a breeze ;-) I totally recommend Elementor - so, with it active, this plugin here will make the perfect sense!

Is Elementor Pro required for this plugin?

Absolutely not. For the Elementor integration the free version of Elementor is enough as it already adds the template library ("My Templates"). However, I strongly recommend Elementor Pro as it is so useful for Non-Coder Designers site builders.

Where are the other popular Page Builders?

All the others already have template categories by default, or, on the other hand, cannot be supported with a post type taxonomy.

  • Thrive Architect: has category feature already built-in - cannot be extended
  • SiteOrigin Page Builder: library built-in, but it is currently impossible to extend it with this taxonomy... - only possible via third-party plugin "Reusable Layouts for SiteOrigin" (free, by Echelon) which we already integrated with since our plugin version 1.6.0
Update:
  • Brizy Page Builder added template feature in their version 1.0.25 - we added integration with our plugin version 1.0.1
  • Visual Composer Website Builder for Headers, Footers, Sidebars, Global Templates - we added integration with our plugin version 1.4.0
  • Avada Fusion Builder in Avada Theme - we added integration with our plugin version 1.4.0
  • Beaver Builder & Beaver Themer - we added integration with our plugin version 1.6.0
  • Divi Builder (plugin version, Divi Theme, Extra Theme) - we added integration with our plugin version 1.6.0

Will other Themes be supported?

Yes, absolutely. – Once I discover another theme (or via an add-on plugin) which adds a template library but has no categories for organizing I consider adding an integration. Of course, you can also make me aware of other themes and plugins with such libraries.

Will other third-party Plugins be supported?

Yes, absolutely. - Once I discover another plugin which adds a template library but has no categories for organizing I consider adding an integration. Of course, you can also make me aware of other themes and plugins with such libraries.

Does this Plugin work with Gutenberg / WordPress 5.0+ / Block Editor?

Yes, of course! - The plugin is fully compatible with Gutenberg Block Editor which is (becoming) WordPress 5.0+. It even supports the "Reusable Blocks" feature and adds our template category for that. This means, you can now categorize your reusable blocks and edit them from a dedicated screen! Beyond that, there is already integration with some Gutenberg-specific plugins built-in. More integrations might follow over time.

Does this Plugin work with Classic Editor and even ClassicPress?

Yes, this plugin works with the Classic Editor plugin perfectly fine. I will try my best to also have my plugin work perfectly in ClassicPress, the fork of WordPress without Gutenberg. It should already be fully compatible but I will follow all events closely to adjust compat if needed.

Will this Plugin slow down my site?

Absolutely not. The plugin will only do its stuff for logged-in Administrator users. It does nothing for visitors of your site. Plugin loads its stuff only when needed and if supported theme/ plugin is active. Plugin was built to be as lightweight as possible.

Does the Plugin work with Multisite?

Yes, it works fine in Multisite, you could even activate it Network-wide. However, the taxonomy is only added on a per site basis (if the supported integrations are active). Therefore it makes the most sense to activate the plugin on a per site basis.

Do I need to have any of the integrations installed?

Technically not. However, without the integrations this plugin doesn't make any sense. So you want to have at least one of the integrations installed and activated. Or, you can also register your own custom integration (see snippets below) if you do not want or need the built-in integrations. Note: One exception is the new Block Editor since WordPress 5.0+. The Block Editor has a feature called "Reusable Blocks" and this is already natively integrated with our plugin, "Builder Template Categories". So, once you have WordPress 5.0+ active you already have one native integration active by default ;-).

Do I still need this plugin since Elementor has its own Category now?

Good question. If you used our plugin, Builder Template Categories, before it's recommended to use it still to not lose your data and for consistency, of course. You absolutely can run both taxonomies side by side. This plugin here always plays nice with others! ;-) And, Builder Template Categories, has a big advantage over Elementor's own taxonomy: our taxonomy is global! This means, it is used by other integrations at the same time - if those are active side by side with Elementor. This "effect" just makes our plugin way more smart and usable in the long run. That is especially useful if you work with Elementor, PLUS one of these:

  • GeneratePress Elements (GP Premium)
  • Astra Custom Layouts (Astra Pro)
  • OceanWP Library
  • Page Builder Framework Sections (WPBF Premium)
  • Customify Hooks (Customify Pro)
  • Suki Blocks (Suki Pro)
  • Genesis Blox plugin (free or Pro)
  • One of the Jet Plugins by Zemez Jet (JetWooBuilder, JetThemeCore, JetListing, JetPopop, JetSmartFilters)
  • AnyWhere Elementor plugin (free or Pro)
  • Templementor
If you ask me: In such a case Builder Template Categories has way more power and makes just more sense, also if you're working with a team. Note: Shortly I will also provide ways to disable Elementor's taxonomy if you want.

Can I extend or customize the plugin?

Yes, of course. There are numerous filters built-in, plus the default filters for taxonomies from WordPress Core apply. If you want to add support for your own custom library, just declare the following register statement via our filter: ` add_filter( 'btc/filter/integrations/all', 'btc_register_custom_integration' ); /**

  • Plugin: Builder Template Categories - Register custom integration.
  • @param array $integrations Holds array of all registered integrations.
  • @return array Tweaked array of registered integrations. */ function btc_register_custom_integration( array $integrations ) {
$post_type = 'your-post-type'; $submenu_hook = 'your-custom-settings-page'; // as in: your-site.domain/wp-admin/admin.php?page=your-custom-settings-page; // or alternative: $submenu_hook = 'edit.php?post_type=' . $post_type; $template_label = 'template'; // or: library, layout, element, popup, lightbox, block, listing, post-type, field, box, bar, hook, filter, section, flow, snippet $integrations[ 'your-custom-handle-lowercase' ] = array( 'label' => __( 'My Custom Templates', 'your-textdomain' ), 'submenu_hook' => $submenu_hook, 'post_type' => $post_type, 'template_label' => $template_label, 'admin_url' => 'edit.php?post_type=' . $post_type, ); return $integrations; } // end function ` (This code snippet as a GitHub Gist) Best practice is to wrap the whole code above in a conditional to check if the theme/ plugin/ post type is active before applying anything from our "Builder Template Categories" stuff. More Code Snippets? - More stuff is available in the plugin's Wiki at GitHub page

More info on Translations?

  • English - default, always included
  • German (de_DE): Deutsch - immer dabei! :-)
  • For custom and update-safe language files please upload them to /wp-content/languages/builder-template-categories/ (just create this folder) - This enables you to use fully custom translations that won't be overridden on plugin updates. Also, complete custom English wording is possible with that as well, just use a language file like builder-template-categories-en_US.mo/.po to achieve that (for creating one see the following tools).
Easy WordPress.org plugin translation platform with GlotPress platform: Translate "Builder Template Categories"... Note: All my plugins are internationalized/ translateable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating and validating I recommend the awesome "Poedit Editor", which works fine on Windows, macOS and Linux.

Some Statistics?

As of version 1.7.0 of the plugin the following was achieved:

  • 1 Taxonomy
  • 87 Integrations overall
  • 1 Core Integration (Gutenberg Block Editor)
  • 13 Theme Integrations
  • 12 Page Builder Integrations
  • 63 Plugin Integrations
  • Up to 96 different post types (of integrations) supported
  • 22 generic template content types, plus 1 plugin-specific template content type

更新日志:

🎉 1.7.0 - 2019-09-23 🎉 1.6.0 - 2019-08-16 ⚡ 1.5.1 - 2019-05-03 🎉 1.5.0 - 2019-03-28 ⚡ 1.4.3 - 2019-01-21 ⚡ 1.4.2 - 2018-12-14 ⚡ 1.4.1 - 2018-12-13 🎉 1.4.0 - 2018-11-21 🎉 1.3.0 - 2018-10-30 🎉 1.2.0 - 2018-10-12 🎉 1.1.0 - 2018-09-30 ⚡ 1.0.1 - 2018-08-30 🎉 1.0.0 - 2018-08-20 ⚡ 0.9.1 - 2018-08-17 ⚡ 0.9.0 - 2018-08-16 = Upgrade Notice 1.7.0 Feature Release with 9 new integrations. - Update highly recommended! :-) 1.6.0 Feature Release with 13 new integrations. - Update highly recommended! :-) 1.5.1 Now with WordPress 5.2 Site Health integration. Plus few internal improvements. - Update highly recommended! 1.5.0 Feature Release with 5 new integrations. - Update highly recommended! :-) 1.4.3 New template content types. Elementor 2.4.0 compatibility. - Update highly recommended! :-) 1.4.2 New template content type; admin CSS fixes; internal library update; smaller tweaks. - Update recommended! :-) 1.4.1 New template content type; internal library update; smaller tweaks. - Update recommended! :-) 1.4.0 Feature release with 10 new integrations added. Plus integration with new "Elementor Finder" feature (interactive search). Also proper highlighting of our taxonomy in submenus in Admin, among other tweaks & improvements. – Update highly recommended! 1.3.0 Feature release with 10 new integrations added. Enhanced Gutenberg / Block Editor support for (upcoming) WordPress 5.0. Plus smaller tweaks and improvements overall. – Update highly recommended! 1.2.0 Feature release with 11 new integrations added. Gutenberg / Block Editor support for (upcoming) WordPress 5.0. Plus smaller tweaks and improvements overall. – Update highly recommended! 1.1.0 Feature release with 9 new integrations added. Also major improvements to category labels, now fitting to the integrated content/post type. Plus smaller tweaks and improvements overall. – Update highly recommended! 1.0.1 Added integration for Brizy Page Builder. Further tweaks and improvements. Update recommended. 1.0.0 Official plugin launch. Everything's new! 0.9.1 Additions for GitHub.com repo. 0.9.0 Beta plugin release on GitHub.com