Support Forum » User Profile

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • in reply to: Taxonomy fields not clonable? #15690
    ToomasToomas
    Participant

    strange, but it doesn't work. If I activate this, I can't set any other taxonomy's terms either.

    in reply to: Taxonomy fields not clonable? #15677
    ToomasToomas
    Participant

    I'm still just curious if there is a workaround to set terms with taxonomy_advanced field?

    in reply to: Taxonomy fields not clonable? #15412
    ToomasToomas
    Participant

    Yeah, but taxonomy_advanced doesn't set the terms:(

    in reply to: Taxonomy fields not clonable? #15403
    ToomasToomas
    Participant

    OK, but can you tell me how to solve the problem if I have a hierarchical taxonomy field with select tree and I want to set several terms (together with the children) to the post?

    in reply to: OSM field and tile server #14554
    ToomasToomas
    Participant

    Hi,

    any news about that?

    in reply to: hierachical taxonomy select tree #14308
    ToomasToomas
    Participant

    Any idea, how it could be accomplished with some other way or plugin?

    in reply to: Refund #13696
    ToomasToomas
    Participant

    Thanks, it works now! I guess I will keep the plugin.

    Best regards,
    Toomas

    in reply to: Refund #13665
    ToomasToomas
    Participant

    My custom fields code:

    add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' );
    function your_prefix_register_meta_boxes( $meta_boxes ) {
        $meta_boxes[] = array (
            'title' => 'books',
            'id' => 'books',
            'post_types' => array(
                0 => 'post',
                1 => 'books',
            ),
            'context' => 'side',
            'priority' => 'high',
            'fields' => array(
                array (
                    'id' => 'taxonomy_2',
                    'type' => 'taxonomy',
                    'name' => 'Taxonomy Field',
                    'taxonomy' => 'books',
                    'field_type' => 'select_tree',
                ),
            ),
        );
        return $meta_boxes;
    }
    in reply to: Refund #13664
    ToomasToomas
    Participant

    Hello,

    no it doesn't work, no difference. I just can't set taxonomy terms to posts via Metabox custom fields. Without using Metabox I can set them. Where do I need to put this code exactly? I pasted it into my theme's functions.php file and also tried Code Snippets plugin. It didnt make any difference. Since I'm not a coder I need some help in understanding your code. What "location" in your code means? "Taxonomy_2" is the name of a custom taxonomy field?

    Best regards,
    Toomas

    in reply to: Refund #13641
    ToomasToomas
    Participant

    Hello,

    CPT-onomies make custom posts act as taxonomies. When I create taxonomy field with the metabox builder, while editing post, I just can't set custom taxonomies (created with CPT-onomies) to the posts. But if I create custom taxonomies with the metabox custom taxonomies plugin, then custom fields are nicely set. MB Relationships makes things too complicated, I just want to set custom taxonomies to the posts.

    Thanks
    Toomas

Viewing 10 posts - 1 through 10 (of 10 total)