Support Forum ยป User Profile

Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • in reply to: โœ…Post editor screen options #43377
    Cynthia ConserCynthia Conser
    Participant

    Nevermind. I was able to drag and drop the fields. ๐Ÿ™‚

    in reply to: โœ…Taxonomy Select field with radio buttons #38295
    Cynthia ConserCynthia Conser
    Participant

    Oops! My bad. The field type is Taxonomy Advanced rather than Taxonomy. I modified your CSS code to reflect this and it works great! Thanks again.

    in reply to: โœ…Taxonomy Select field with radio buttons #38276
    Cynthia ConserCynthia Conser
    Participant

    Thanks for responding. Unfortunately, this did not work for me. (I cleared caches.)

    Cynthia ConserCynthia Conser
    Participant

    Thanks, I tried that and it didn't work. Then, I noticed I had used the same slug (name-type) for the taxonomy and the advanced custom field. I changed the slug for the advanced custom field and now it works.

    in reply to: โœ…create related/child records from parent admin view #38154
    Cynthia ConserCynthia Conser
    Participant

    I think I just asked for this in my post "Button Field: Open "Add New" post in modal window."

    Cynthia ConserCynthia Conser
    Participant

    Perfect! Thanks so much.

    in reply to: โœ…12-Column Grid & Builder #37553
    Cynthia ConserCynthia Conser
    Participant

    Thanks for your response. I tried deactivating other plugins, but it didn't help. It's more important to me that the fields appear in the admin columns than that they display horizontally on the form, so I will abandon this effort.

    in reply to: โœ…12-Column Grid & Builder #37528
    Cynthia ConserCynthia Conser
    Participant

    Also, is it necessary to use the group field for this to work? I need for the dates to appear in the admin columns and just realized that won't happen if they are subfields of a group. Thanks!

    in reply to: โœ…12-Column Grid & Builder #37525
    Cynthia ConserCynthia Conser
    Participant

    Here is the code. It is for selecting a date; I can't use the date picker field because the dates are historical (before 1900).

               [
                    'name'   => __( 'Date 1 Group', 'your-text-domain' ),
                    'id'     => $prefix . 'date_1_group',
                    'type'   => 'group',
                    'fields' => [
                        [
                            'name'    => __( 'Day', 'your-text-domain' ),
                            'id'      => $prefix . 'day1',
                            'type'    => 'select_advanced',
                            'options' => [
                                1  => __( '1', 'your-text-domain' ),
                                2  => __( '2', 'your-text-domain' ),
                                3  => __( '3', 'your-text-domain' ),
                                4  => __( '4', 'your-text-domain' ),
                                5  => __( '5', 'your-text-domain' ),
                                6  => __( '6', 'your-text-domain' ),
                                7  => __( '7', 'your-text-domain' ),
                                8  => __( '8', 'your-text-domain' ),
                                9  => __( '9', 'your-text-domain' ),
                                10 => __( '10', 'your-text-domain' ),
                                11 => __( '11', 'your-text-domain' ),
                                12 => __( '12', 'your-text-domain' ),
                                13 => __( '13', 'your-text-domain' ),
                                14 => __( '14', 'your-text-domain' ),
                                15 => __( '15', 'your-text-domain' ),
                                16 => __( '16', 'your-text-domain' ),
                                17 => __( '17', 'your-text-domain' ),
                                18 => __( '18', 'your-text-domain' ),
                                19 => __( '19', 'your-text-domain' ),
                                20 => __( '20', 'your-text-domain' ),
                                21 => __( '21', 'your-text-domain' ),
                                22 => __( '22', 'your-text-domain' ),
                                23 => __( '23', 'your-text-domain' ),
                                24 => __( '24', 'your-text-domain' ),
                                25 => __( '25', 'your-text-domain' ),
                                26 => __( '26', 'your-text-domain' ),
                                27 => __( '27', 'your-text-domain' ),
                                28 => __( '28', 'your-text-domain' ),
                                29 => __( '29', 'your-text-domain' ),
                                30 => __( '30', 'your-text-domain' ),
                                31 => __( '31', 'your-text-domain' ),
                            ],
                            'columns' => 4,
                        ],
                        [
                            'name'    => __( 'Month', 'your-text-domain' ),
                            'id'      => $prefix . 'month1',
                            'type'    => 'select_advanced',
                            'options' => [
                                1  => __( 'January', 'your-text-domain' ),
                                2  => __( 'February', 'your-text-domain' ),
                                3  => __( 'March', 'your-text-domain' ),
                                4  => __( 'April', 'your-text-domain' ),
                                5  => __( 'May', 'your-text-domain' ),
                                6  => __( 'June', 'your-text-domain' ),
                                7  => __( 'July', 'your-text-domain' ),
                                8  => __( 'August', 'your-text-domain' ),
                                9  => __( 'September', 'your-text-domain' ),
                                10 => __( 'October', 'your-text-domain' ),
                                11 => __( 'November', 'your-text-domain' ),
                                12 => __( 'December', 'your-text-domain' ),
                            ],
                            'columns' => 4,
                        ],
                        [
                            'name'    => __( 'Year', 'your-text-domain' ),
                            'id'      => $prefix . 'year',
                            'type'    => 'number',
                            'columns' => 4,
                        ],
                    ],
                ],
    Cynthia ConserCynthia Conser
    Participant

    Thank you.

    in reply to: โœ…Tooltip Behavior #37342
    Cynthia ConserCynthia Conser
    Participant

    Thank you!

    in reply to: Filter a selected child group of taxonomy terms #37186
    Cynthia ConserCynthia Conser
    Participant

    Thank you for your prompt reply. I am using the builder and have tried entering the following under Query args to no avail:

    website_query.0.taxonomy repository
    website_query.0.field slug
    website_query.0.terms website

    Obviously, I am clueless. What should I be doing instead?

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