Forum Replies Created
-
AuthorPosts
-
Cynthia Conser
ParticipantNevermind. I was able to drag and drop the fields. ๐
Cynthia Conser
ParticipantOops! 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.
Cynthia Conser
ParticipantThanks for responding. Unfortunately, this did not work for me. (I cleared caches.)
September 5, 2022 at 10:52 PM in reply to: โ Conditional Logic, Advanced Taxonomy Fields with Radio buttons #38184Cynthia Conser
ParticipantThanks, 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.
September 1, 2022 at 11:46 PM in reply to: โ create related/child records from parent admin view #38154Cynthia Conser
ParticipantI think I just asked for this in my post "Button Field: Open "Add New" post in modal window."
August 31, 2022 at 11:00 PM in reply to: โ Post Field: Logged-in admin can't view titles of posts that are "Private" #38147Cynthia Conser
ParticipantPerfect! Thanks so much.
Cynthia Conser
ParticipantThanks 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.
Cynthia Conser
ParticipantAlso, 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!
Cynthia Conser
ParticipantHere 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, ], ], ],August 12, 2022 at 1:36 AM in reply to: โ How to access frontend submission form directly from admin menu #37459Cynthia Conser
ParticipantThank you.
Cynthia Conser
ParticipantThank you!
Cynthia Conser
ParticipantThank 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 websiteObviously, I am clueless. What should I be doing instead?
-
AuthorPosts