Not using field labels

Created on 8 November 2017, over 7 years ago
Updated 19 April 2023, almost 2 years ago

Somehow my export is using the machine names of the fields instead of the labels. I haven't been able to find out why DataExport has this behaviour, but I've temporarily solved my problem using the alias field in the row style options.

πŸ› Bug report
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡³πŸ‡±Netherlands StefanPr

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States sleewok

    I want to piggy back on this. Alias is not a solution for me. I am generating a Google product feed and several of the fields need to be labeled with a ":" such as "g:id". This is not possible using an alias as it gives me the following error: "The machine-readable name must contain only letters, numbers, dashes and underscores."

  • πŸ‡³πŸ‡±Netherlands vincent rommelaars

    Hi, did anyone solve this issue.
    I'm trying to create a google shopping feed.
    I really need the tags to use the g: format, but the alias does not support colon in it.
    Also the field labels aren't used.

    Any ideas or pointers in the right direction?
    Thanks in advance.

  • πŸ‡³πŸ‡±Netherlands vincent rommelaars

    Hi,
    While looking a bint further in the issues I did create a solution.

    Add the following in a custom module to create an alter of the alias names. (In my case it replaces a double underscore "__" with a colon ":")

    Hope this helps anyone else.

    /**
     * Implements hook_views_data_export_row_alter().
     */
    function [YOURMODULE]_views_data_export_row_alter(&$output, ResultRow $row, ViewExecutable $view) {
      // For a specific view and display.
      if ($view->storage->id() == '[YOUR_VIEW]' && $view->current_display == '[YOUR_DISPLAY]') {
        foreach ($output as $key => $value) {
          $new_key = str_replace("__",":",$key);
          unset ($output[$key]);
          $output[$new_key] = $value != '' ? $value : '';
        }
      }
    }
Production build 0.71.5 2024