• Hi,
    I need to get the select values of a custom select field to be displayed in a template, the idea is to populate a menu with this option.
    e.g.
    select field name: food-category
    options: Savoury, Sweet, Bread …

    So far I managed to get the values this way:
    $option_values_select=get_option(‘wpcf-fields’);
    $actual_option_value=$option_values_select[‘food-category’][‘data’][‘options’];
    then a loop:
    foreach($actual_option_value as $key=>$val) {echo $val.’
    ‘}

    NOW I need this values translated into german, I have WPML and have them translated already as strings, but can’t find the way to pull them into the template.

    Please can you assist?

    https://wordpress.org/plugins/types/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mmb000

    (@mmb000)

    Also forgot mentioning I know you can bring values into the template by the Page ID the select field is related :
    e.g.
    types_render_field(“food-category”, array(“post_id” => $result->page_post_id, “raw” => “true”));

    or
    types_render_field(“food-category”, array(“post_id” => $result->page_post_id, “html” => “true”));

    This will bring the VALUE translated depending of the “ICL_LANGUAGE_CODE” value (in this case de)

    but again can’t get the options translations themselves… please help.

    Dear mmb000

    NOW I need this values translated into german, I have WPML and have them translated already as strings, but can’t find the way to pull them into the template.

    Please can you assist?

    Please use WPML String Translator and on custom field edit page select certain fields for translations.

    More:

    http://docs.icanlocalize.com/information-for-clients/how-to-translate-custom-fields-and-taxonomies/

    Cheers,
    Marcin

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Get custom select field OPTIONS translated into a template’ is closed to new replies.