Two different category boxes in WordPress - wordpress

I want two category boxes for my articles. One box for topic-select and the other for project-select.
Do you know a PlugIn?

You want to add custom taxonomies I think.
You can do that either by:
a plugin called More Taxonomies
or
by generating a new taxonomy in functions.php or create a plugin with the new taxonomy code

Related

looping different custom taxonomies with single page template

I have a main custom taxonomy page templates which call "product" it will show all the product in a single page.
But I have lot of sub taxonomies under product wanna show each in different page.
I know I can create as much as taxonomies categories page for each sub category but is there any way I can do it with a single template to fulfill all the looping?
You don't need to create pages for each taxonomy term, you could create a file called taxonomy-{taxonomy}.php in your theme's directory (which {taxonomy} is the name of taxonomy you crated) and it will load for each taxonomy term you create. for more information read Taxonomy Templates docs.

How to make relation between two taxonomies in WordPress

I have Variations taxonomy and each Variation taxonomy has multiple Meta tags.
I have created Variations taxonomy and Meta tags taxonomy.
But the problem is I could not make the relation between two taxonomies.
These taxonomies created on custom post type.
How can I achieve it? Any idea or solution?
Do you see the taxonomies below the custom post type on the admin page? If you do, then just click on Variations, and WP will let you make the relation to other entries in the taxonomy.

How can I nest clonable metabox fields on WP?

I'm trying to create and use a metabox group of fields and display it on a site. I want to handle it like a blog but I don't want to create more and more subcategories and tags.
I do recommend Tran Ngoc Tuan Anh Plugin
Voìla: https://metabox.io/

Add extra tab like page/post in wordpress for categories/products

I was wondering if there was any plugin or a way to add extra tab in Wordpress admin similar to page/post that would be called categories and inside of it have different categories + subcategories and inside them products? This is not an e-commerce site so I do not want to use woocommerce plugin...
It would look something like that:
Categories (Name of the tab) -> Category1 (ie. Tapes) -> SubCategory (ie. Isolating tapes-> Products
Would apprieciate any help! thank you
Despite that you can't create menu item structure like that you've described in your admin area without some complicated coding, you can create custom post types & custom taxonomies for it.
So, you can have the structure like this one:
Products
- Products
- Product categories
You can make hierarchical categories list & assign any of it to any product.
Please refer to the codex on creation of the custom post & taxonomies
https://codex.wordpress.org/Function_Reference/register_post_type
https://codex.wordpress.org/Function_Reference/register_taxonomy
If you want the plugin, there are plenty of them. For example you can use this one:
https://wordpress.org/plugins/custom-post-type-ui/

Wordpress generated page with values from url

I'm currently trying to build a wordpress product catalog with a custom taxonomy.
I'd like to have browseable multi-level category system, so if I click the Catalog menu, it would show all the top parent categories, and if I click on one of these categories, instead of showing me the posts in that particular category, I want it to list all it's subcategories.
For this I'm using two slightly modified plugins currently:
Multi column taxonomy list, and taxonomy images.
My approach would be to have the taxonomy lister display custom links linke www.xyz.com/wp/product?cat=doors
and the product page would process the $_GET data cat and forward it to the shortcode somehow so it would be [mctl taxonomy='productcategories' parent='$_GET['parentid']']
.
So for the TLDR: How can I pass variables from the URL to the shortcode, or to the plugin.
Thanks for any help.
Nevermind, I figured it out. I just had to edit the plugins php and use the $_GET[''] stuff there.

Resources