Support

Account

Home Forums Search Search Results for 'taxonomy'

Search Results for 'taxonomy'

topic

  • Helping

    Include taxonomy slug in CPT URL

    Hi:

    I create “productos” CPT using ACF and a custom taxonomy “categoria-producto” asociated to “productos” CPT

    I would like the item URL was:

    mipage.com/tienda/%categoria-producto%/sample-product

    As Woocommerce product (mipage.com/tienda/product-category/sample-product/)

    How can i do that??

    Thxs

    Regards

  • Helping

    How to hide custom taxonomy

    I’d like to keep my custom taxonomy called “Branches” out of the URL, so I’d need to “hide” the slug somehow.

    Current: site.com/branch/hotels/cpt

    What I want is this:
    site.com/hotels/cpt

    I can’t figure out how to make that work, do any of you fine people know?

    Thanks in advance!

  • Solved

    Display featured images of selected taxonomy terms

    I created:

    • a custom post type (courses)
    • a custom taxonomy (accreditations)

    I added:

    • a repeater custom field (accreditations) to the course posts, containing a taxonomy subfield (organizations – select dropdown) which loads and saves the taxonomy terms.
    • a image custom field (featured_image) to the taxonomy terms

    Now I would like to show the featured images of the taxonomy terms I selected for a particular course. Tried the code below, but this code shows the featured images of all taxonomy terms, not only the ones I selected for the particular course.

    function custom_accreditation_logo () {
    	ob_start();
    		$terms = get_terms( array( 'taxonomy' => 'accreditations', 'hide_empty' => false ) );
    		foreach ( $terms as $term ) {
    			$image = get_field('featured_image', 'accreditations_' . $term->term_id );
    			echo '<img src="' . $image['url'] . '" alt="' . $image['alt'] .'">'; 
    		}
    	$content = ob_get_clean(); // store buffered output content.
    	return $content;
    }
    add_shortcode( 'accreditatie_logos', 'custom_accreditation_logo' );
    

    Does anyone know how to only show the featured images of the selected taxonomy terms (not the unselected ones)?

  • Solved

    Display taxonomy subfield term names in table

    I created a repeater field (accreditations) containing a taxonomy subfield (organization) and text subfield (points). So for each row I can select one taxonomy term and put the associated points in the text subfield.

    Now I would like to display the organizations (taxonomy terms) and points (text inputs) in a table. Tried the code below, which shows the points, but does not show the organizations (term names).

    function custom_accreditations () {
    	ob_start();
    		if(have_rows('accreditations')):
    			echo '<div><figure class="wp-block-table"><table class="accreditaties"><tbody><tr><td><strong>Organization</strong></td><td><strong>Punten</strong></td></tr>';
    			while (have_rows('accreditations')) : the_row();
    				$term = get_sub_field('organization');
    				$points = get_sub_field('points');
    				if( $term ):
    				$organization = $term->name;
    				echo '<tr><td>'.$organization.'</td><td>'.$punten.'</td></tr>';
    				endif;
    			endwhile;
    			echo '</tbody></table></figure></div>';
    		endif;
    	$content = ob_get_clean(); // store buffered output content.
    	return $content;
    }
    add_shortcode( 'accreditatiepunten', 'custom_accreditations' );

    What am I doing wrong? Anyone know how to display the taxonomy term names correctly?

  • Unread

    Elementor – How to list custom posts + posts in relationship

    Hi,

    I have posts, with ACF relationship that let select a custom taxonomy ‘thematique’
    I have custom posts ‘dossier’ with custom taxonomy ‘thematique’

    I wish in an Elementor custom query to display

    All custom post linked to current taxonomy + post that have this taxonomy as relationship

    Actuaylly I have this, but I don’t know how to implement my needs

    function get_posts_dossier_articles( $query ) {
    $taxonomy_slug = get_query_var('taxonomy');
    $query->set( 'post_type', [ 'post', 'dossier' ] );
    }
    add_action( 'elementor/query/dossiers_articles', 'get_posts_dossier_articles' );

    thanks in advance for your precious help or suggests !

  • Solving

    Show category name and image on related custom post

    Hi there.

    I have set up a relationship between the post type opportunity (as in job opportunity) and linked organisation – the organisation that is offering the opportunity.

    There is a custom taxonomy for the Organisation called Accreditation which shows the various 3rd party accreditation that organisation has.

    My question is

    a) how can I show the name of the related organisation’s accreditations on the opportunity post

    b) show the ACF custom fields for logo and url that I have attached to the accreditation terms.

    Currently I am showing the custom field for organisation location on the opportunity template using the following query, which I hope to expand to include the accreditation category and its associated custom fields.


    $linked_organisation = get_field('linked_organisation');
    if ($linked_organisation):
    foreach( $linked_organisation as $l) :
    $organisation_location = get_field('organisation_town', $l->ID);
    endforeach;
    endif;

    Thanks in advance,

    Mat

  • Helping

    Why Taxonomies don’t have Permissions?

    I’ve been looking into ACF’s Post Types and Taxonomies and comparing all their available options with code that I’ve writing so far, in order to see if the options cover everything and they almost do.

    I’ve noticed one omission in the Advanced Configuration of Taxonomies. Although Post Types have the following: General, Labels, Visibility, URLs, Permissions, REST API

    Taxonomies are missing Permissions which would be the equivalent of passing an array of capabilities to the register_taxonomy() function. For example:


    'capabilities' => [
    'manage_terms' => 'manage_my_cpt_mytax',
    'edit_terms' => 'edit_my_cpt_mytax',
    'delete_terms' => 'delete_my_cpt_mytax',
    'assign_terms' => 'assign_my_cpt_mytax',
    ]

    Any plans to add it?

  • Unread

    Post object connected with taxonomy

    Hello,
    i have a cpt and a form connected to that.
    In that form i have a taxonomy field named product_category
    I would have a post object field that loads the posts of selected product category.
    How can achieve that?
    Is there a filter that can help me?

    Thank you.

  • Unread

    Groups prepend empty key/value pair

    I’ve noticed acf adds an empty key/value pair on groups as the first record.
    As an example, here’s my group of groups for cities and regions of a particular country. The JSON is at the bottom.

    This dump: var_dump(get_field( 'category_info', $custom_fields_selector )['featured_items']['cities']); (which should have a 5 records)

    Will return this:

    
    array (size=6)
      '' => null // Where does this come from?
      'object_1' => 
        array (size=4)
          'select_object_type' => string 'category' (length=8)
          'taxonomy' => int 112
          'article' => boolean false
          'article_anchor' => string '' (length=0)
      'object_2' => 
        array (size=4)
          'select_object_type' => string 'category' (length=8)
          'taxonomy' => int 92
          'article' => boolean false
          'article_anchor' => string '' (length=0)
      'object_3' => 
        array (size=4)
          'select_object_type' => string 'category' (length=8)
          'taxonomy' => int 43
          'article' => boolean false
          'article_anchor' => string '' (length=0)
      'object_4' => 
        array (size=4)
          'select_object_type' => string 'post' (length=4)
          'taxonomy' => boolean false
          'article' => int 8491
          'article_anchor' => string 'Costa Blanca' (length=12)
      'object_5' => 
        array (size=4)
          'select_object_type' => string 'post' (length=4)
          'taxonomy' => boolean false
          'article' => int 6975
          'article_anchor' => string 'Navarra' (length=7)
    

    I have tried re-saving the category page, change values and creating new groups. All of which result in the same behaviour.
    When I had this last week I thought it was because I named some fields as single digits (get_field( 'category_info', $custom_fields_selector )['featured_items']['cities']['1']['url'] for example), but after starting a new WP installation and database, the issue persists.

    JSON:

                    {
                        "key": "field_6457b347dec09",
                        "label": "Uitgelichte regio's en steden",
                        "name": "featured_items",
                        "aria-label": "",
                        "type": "group",
                        "instructions": "",
                        "required": 0,
                        "conditional_logic": 0,
                        "wrapper": {
                            "width": "",
                            "class": "",
                            "id": ""
                        },
                        "layout": "block",
                        "sub_fields": [
                            {
                                "key": "field_6457b3ccdec0b",
                                "label": "Uitgelichte regio's",
                                "name": "regions",
                                "aria-label": "",
                                "type": "group",
                                "instructions": "",
                                "required": 0,
                                "conditional_logic": 0,
                                "wrapper": {
                                    "width": "",
                                    "class": "",
                                    "id": ""
                                },
                                "layout": "block",
                                "sub_fields": [
                                    {
                                        "key": "field_645d1d36b4c65",
                                        "label": "Regio 1",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b437dec0c",
                                        "label": "Regio 1",
                                        "name": "object_1",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b453dec0d",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b4aadec0e",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b528dec0f",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b562dec10",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d1d49b4c66",
                                        "label": "Regio 2",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b59cdec11",
                                        "label": "Regio 2",
                                        "name": "object_2",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b59cdec15",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b59cdec16",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b59cdec17",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b59cdec18",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d1d4ab4c67",
                                        "label": "Regio 3",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b59ddec19",
                                        "label": "Regio 3",
                                        "name": "object_3",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b59ddec1d",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b59ddec1e",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b59ddec1f",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b59ddec20",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d1d4bb4c68",
                                        "label": "Regio 4",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b5a0dec21",
                                        "label": "Regio 4",
                                        "name": "object_4",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b5a0dec25",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b5a0dec26",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b5a0dec27",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b5a0dec28",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d1d4cb4c69",
                                        "label": "Regio 5",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b5a1dec29",
                                        "label": "Regio 5",
                                        "name": "object_5",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b5a1dec2d",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b5a1dec2e",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b5a1dec2f",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b5a1dec30",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    }
                                ]
                            },
                            {
                                "key": "field_6457b5c1dec31",
                                "label": "Uitgelichte steden",
                                "name": "cities",
                                "aria-label": "",
                                "type": "group",
                                "instructions": "",
                                "required": 0,
                                "conditional_logic": 0,
                                "wrapper": {
                                    "width": "",
                                    "class": "",
                                    "id": ""
                                },
                                "layout": "block",
                                "sub_fields": [
                                    {
                                        "key": "field_645d1d97c410f",
                                        "label": "Stad 1",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b5c1dec41",
                                        "label": "Stad 1",
                                        "name": "object_1",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b5c1dec42",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b5c1dec43",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b5c1dec44",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b5c2dec45",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d2e7dc4110",
                                        "label": "Stad 2",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b5c2dec46",
                                        "label": "Stad 2",
                                        "name": "object_2",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b5c2dec47",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b5c2dec48",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b5c2dec49",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b5c2dec4a",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d2e7fc4111",
                                        "label": "Stad 3",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b5c2dec4b",
                                        "label": "Stad 3",
                                        "name": "object_3",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b5c2dec4c",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b5c2dec4d",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b5c2dec4e",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b5c2dec4f",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d2e81c4112",
                                        "label": "Stad 4",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b5c2dec50",
                                        "label": "Stad 4",
                                        "name": "object_4",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b5c2dec51",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b5c2dec52",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b5c2dec53",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b5c2dec54",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    },
                                    {
                                        "key": "field_645d2e82c4113",
                                        "label": "Stad 5",
                                        "name": "",
                                        "aria-label": "",
                                        "type": "tab",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "placement": "top",
                                        "endpoint": 0
                                    },
                                    {
                                        "key": "field_6457b5c2dec55",
                                        "label": "Stad 5",
                                        "name": "object_5",
                                        "aria-label": "",
                                        "type": "group",
                                        "instructions": "",
                                        "required": 0,
                                        "conditional_logic": 0,
                                        "wrapper": {
                                            "width": "",
                                            "class": "",
                                            "id": ""
                                        },
                                        "layout": "block",
                                        "sub_fields": [
                                            {
                                                "key": "field_6457b5c2dec56",
                                                "label": "Categorie of artikel",
                                                "name": "select_object_type",
                                                "aria-label": "",
                                                "type": "select",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "choices": {
                                                    "category": "Categoriepagina",
                                                    "post": "Artikel"
                                                },
                                                "default_value": false,
                                                "return_format": "value",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 0,
                                                "ajax": 0,
                                                "placeholder": ""
                                            },
                                            {
                                                "key": "field_6457b5c2dec57",
                                                "label": "Categorie",
                                                "name": "taxonomy",
                                                "aria-label": "",
                                                "type": "taxonomy",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "taxonomy": "category",
                                                "add_term": 0,
                                                "save_terms": 0,
                                                "load_terms": 0,
                                                "return_format": "id",
                                                "field_type": "select",
                                                "allow_null": 1,
                                                "multiple": 0
                                            },
                                            {
                                                "key": "field_6457b5c2dec58",
                                                "label": "Artikel",
                                                "name": "article",
                                                "aria-label": "",
                                                "type": "post_object",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "post_type": [
                                                    "post"
                                                ],
                                                "post_status": [
                                                    "publish"
                                                ],
                                                "taxonomy": "",
                                                "return_format": "id",
                                                "multiple": 0,
                                                "allow_null": 1,
                                                "ui": 1
                                            },
                                            {
                                                "key": "field_6457b5c2dec59",
                                                "label": "Naam",
                                                "name": "article_anchor",
                                                "aria-label": "",
                                                "type": "text",
                                                "instructions": "",
                                                "required": 0,
                                                "conditional_logic": 0,
                                                "wrapper": {
                                                    "width": "",
                                                    "class": "",
                                                    "id": ""
                                                },
                                                "default_value": "",
                                                "maxlength": "",
                                                "placeholder": "",
                                                "prepend": "",
                                                "append": ""
                                            }
                                        ]
                                    }
                                ]
                            }
                        ]
                    }
    
  • Solving

    Add vertical/horizontal layout option to Taxonomy field

    Dear ACF team,

    I noticed that I have the option to select a horizontal layout for Checkbox fields, which is great. However what I found a little confusing is that the checkbox appearance option for the Taxonomy field does not have this option.

    It’d be great to see the vertical vs horizontal option to all checkbox/radio type inputs.

    Thanks so much,
    Noëlle

  • Solving

    Sorting ACF taxonomy columns in admin

    Hi there,

    Fantastic that ACF has added custom post type/taxnomy support, it’s really great so far. I have one question though. I have added some taxonomy columns to the admin, however I noticed they’re not sortable like the default Title column is. Am I missing a setting (I did not see this mentioned in the docs)? Or is this something that’s still in the works?

    Many thanks,
    Noëlle

  • Unread

    Post Object / Relationship Field doesn’t work properly with multiple post types

    I am not sure if this is a bug or wrong understanding of how fields should work.

    In my case, I want to provide a way to include articles (post_type=’post’) and case studies (custom post_type=’case_study’) to specific pages of the website. So we can output these posts as “Related Items” at the bottom of the page.

    I covered the field setup and all the logic by using “Post Object” field that should support 2 post_types = post & case_study.

    The field appears in the wp editor but it suggests only articles of “post” type. “case_study” options are not there.

    I tried to replace the “post” type with another custom post type and everything works properly. However when I bring “post” type back to the settings, it doesn’t work.

    The issue is related to “Post Object” and “Relationship” fields. They simply don’t show posts of “case_study” when “post” is mentioned.

    Here is how the field looks like:

    `
    array(
    ‘key’ => ‘field_646a1e151cb01’,
    ‘label’ => ‘case_studiess’,
    ‘name’ => ‘case_studiess’,
    ‘aria-label’ => ”,
    ‘type’ => ‘post_object’,
    ‘instructions’ => ”,
    ‘required’ => 0,
    ‘conditional_logic’ => 0,
    ‘wrapper’ => array(
    ‘width’ => ”,
    ‘class’ => ”,
    ‘id’ => ”,
    ),
    ‘post_type’ => array(
    0 => ‘post’, // The problematic part is here. If I replace “post” with any other custom post type, everything works properly.
    1 => ‘case_study’,
    ),
    ‘post_status’ => ”,
    ‘taxonomy’ => ”,
    ‘return_format’ => ‘id’,
    ‘multiple’ => 1,
    ‘translations’ => ‘copy_once’,
    ‘allow_null’ => 0,
    ‘ui’ => 1,
    ),
    `

    Any ideas what’s going wrong here?

  • Unread

    Taxonomy Field Restrictions possible ?

    Hello, I am using a taxonomy field in the front end (form) to give the user the possibility of a multiple selection.
    The taxonomy is hierarchical and has a maximum of 1 child.
    My question is – is it possible to allow the user to select only child elements – so no (parent 0) elements ?
    And furthermore – is it possible to limit the possibility of multiple selection – e.g. to allow the user only 3 selections ?
    Thanks for your help!

  • Unread

    Taxonomie Fields

    Please add a min/max Rule for Taxonomy Fields (select…) – so the Visitor eg. can select only between this two values. In Case the Taxonomy is a Post Tag with “create new” possibility, I want prevent the User create to much Tags. Best Thanks

  • Unread

    ACF post types taxonomies useless unless…

    I love the new Post Types function of ACF, i could stop use other plugins for it.

    But the Taxonomies feature is little limited – even if you select e.g. Category taxonomy for a custom post type and you can then set this taxonomy for a post type, it does not mean the post does appear on the category page, unless you update wp_query, like this


    add_filter('pre_get_posts', 'query_post_type');
    function query_post_type($query) {
    if( is_category() ) {
    $post_type = get_query_var('post_type');
    if($post_type)
    $post_type = $post_type;
    else
    $post_type = array('nav_menu_item', 'post', 'movies'); // don't forget nav_menu_item to allow menus to work!
    $query->set('post_type',$post_type);
    return $query;
    }
    }

    It would be great if users could just allow it in the ACF Post Type admin

  • Solving

    How do I show custom fields from tax on posts?

    ACF provides an example that retrieves custom fields from a taxonomy and then displays it on an archive page such as category.php.

    https://www.advancedcustomfields.com/resources/adding-fields-taxonomy-term/#example

    This approach doesn’t work for a single post. Does anyone have any advice on how to retrieve custom fields from a taxonomy and then display it on a single post?

  • Solved

    Use a select field to assign a taxonomy?

    I have a custom post type for cast and crew for a community theater site.

    I have a select field with multiple choices based on roles (actor, dancer, director, etc.) – multiple roles are possible for each person.

    I also need to be able to list all actors, dancers, etc. Normally I would use a taxonomy for this, but how can I have the select field assign this person to the matching taxonomy? Is this even possible at all in ACF?

  • Helping

    Apply Custom taxonomy based on related post type

    I have 3 custom Post types, Organization, Role, Person.
    I have 2 relationships set up
    Organisation can have many roles.
    People can have many roles.

    Is there a way of adding people to an organization based on the relationship to a role?

  • Solved

    ACF Form – allow logged-out users to create terms in taxonomy

    Is it possible to allow guests (logged-out users) to create their own term in custom taxonomy when using the acf_form() which basically creates a new custom post?

    The + icon is only visible to logged in users so far.

  • Unread

    How To Migrate From Toolset Types to ACF

    Hi there,

    I want to ditch the Toolset plugin which I only use for CPT & Taxonomy registration. I’d like to migrate all my CPTs and Taxonomies to the new ACF Posts and Taxonomies.

    Has anyone done this before? If so what are the steps I need to take?

    Many thanks!

  • Solving

    Use CPT slug in taxonomy URL?

    Hello.
    I’m using ACF Pro to register my CPTs and taxonomy and I’m looking for a way to keep my CPT slug as part of a taxonomy URL. Example:

    CPT: Articles
    Taxonomy: Categories

    CPT Archive URL: mydomain.com/articles
    Current taxonomy URL: mydomain.com/categories

    The URL that I’d like: mydomain.com/articles/categories

    Any suggestions would be appreciated.

    Thanks,
    Kristin.

  • Unread

    Using ACF for filtering with 3 drop-down selection

    I intend to develop a directory for manufacturers/suppliers with Elementor/FacetWP and for this I want to use categories and subcategories according to the scheme:

    Main-Category
    Main-Category
    -Sub-Category A
    -Sub-Category A
    –Sub-Category B
    –Sub-Category B
    Main-Category
    Main-Category

    Is it possible to display this with FacetWP so that you can query Main-Category, Sub-Category A and Sub-Category B each in a separate menu?

    The user selects as in order:
    1. Main-Category
    2. Sub-Category A
    3, Sub-Category B

    Sorry, I am not yet a beginner and I have a few additional questions:

    1. do Main-Category, Sub-Category A and Sub-Category B each need to be captured individually with CPT UI/Taxonomies or can/should one use the hierarchical structure?

    2. is the taxonomy approach even the right one or would it have to be done via Advance Custom Fields (ACF)?

    Is FacetWP the best select for this application or an other Filter Plugin?

    Thanks

  • Solved

    How to modify the capabilities of taxonomy?

    I want to modify the item equivalent to “RENAME CAPABILITIES” for custom posts in taxonomy as well.
    Alternatively, I would like to override the settings using a filter hook.
    Is there a way to do this currently?

  • Solved

    Taxonomy Terms in Conditional Logic

    Please implement the ability to select taxonomy terms in the conditional logic section. My attached illustration will better explain what I’m getting gat.

    To be honest, I’m surprised this isn’t already a feature. I firmly believe, though, that implementing this will set ACF worlds apart from its competitors.

  • Helping

    Working with taxonomy depth

    I miss features, that would work with hierarchical taxonomy depth. It is very easy to get the depth for the term – just count get_ancestors( $term_id, ‘custom-taxonomy-slug’ ) (+ 1 if you want to start from, not zero, for the top level).

    For example:

    Field conditional logic:
    – show this field only if the term in [other-field] is level 1

    Location rule:
    – show this field group only on terms on top level (typically for setting up some category images for top level categories)

    Field options:
    – allow to select only levels higher then 1
    – display only top level categories


    And also working with parent/child relationship
    Display subcategories of [other field with top level category] – so making dependant select boxes.

Viewing 25 results - 151 through 175 (of 3,188 total)