Skip Navigation

[Résolu] wpt-field-option function not loading select field

This support ticket is created Il y a 4 années et 2 mois. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Aucun de nos assistants n'est disponible aujourd'hui sur le forum Jeu d'outils. Veuillez créer un ticket, et nous nous le traiterons dès notre prochaine connexion. Merci de votre compréhension.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

Ce sujet contient 4 réponses, a 2 voix.

Dernière mise à jour par larryL Il y a 4 années et 2 mois.

Assisté par: Waqar.

Auteur
Publications
#1771565

I added an additional function :

add_filter( 'wpt_field_options', 'add_more_options', 10, 3);
function add_more_options( $options, $title, $type )
{
    switch( $title )
    {
    case 'replacement officer':
        $args = array(
            'orderby' => 'display_name',
            'fields' => array( 'ID', 'display_name')
        );
        foreach( get_users($args) as $user ) {
            $options[] = array(
                '#value' => $user->ID,
                '#title' => $user->display_name,
            );
        }
        break;
    }
    return $options;
} 
     

to pull in the users in a form that already has another field 'user-id' that also does the same thing (that one is working). But this one does not work.

The post form already has the select field jquery in place

jQuery(document).ready(function() {
    jQuery('select[name="wpcf-replacement-officer"]').toolset_select2();
});

is there a conflict that doesn't allow me to do this?

#1772061

Hi,

Thank you for contacting us and I'd be happy to assist.

I see two reasons why this code is not working:

1. Out of 13 custom field groups on the website, I found a field "replacement officer" in the field group "Absence Tracking".

The title of this field is "Replacement Officer" and you should also be using the same in the code.
( instead of "replacement officer" )


case 'Replacement Officer':

2. The "wpt_field_options" filter works for the select type fields, where some options can be involved.

The field that you currently have is just a "single line" type field, which is why no options can be added to it.

Please remove this field and add it again with the same title, but the field type should be "select".

regards,
Waqar

#1773855

Thanks Waqar! BTW, is there a reason why I can't use numbers in the function names? I noticed that seems to break things.

#1775823

Thanks for writing back and your observation is correct.

In PHP, user-defined function names can only start with with a letter or an underscore.
( ref: lien caché )

#1776619

My issue is resolved now. Thank you!