Feeds Save and import button missing when sticky action buttons setting enabled

Created on 5 March 2025, about 1 month ago

Problem/Motivation

Note: Not sure if this is a bug or a support request.

When the "Enable sticky action buttons" setting is enabled in Gin settings, the Feeds module's Save and import button goes missing. Per Gin's documentation , I added the following to one of my custom modules' form_alter hooks:

if (isset($form['actions']['import'])) {
  $form['actions']['import']['#gin_action_item'] = TRUE;
}

Unfortunately that didn't work, so I've disabled the "Enable sticky action buttons" setting for now.

Steps to reproduce

  1. Enable the Gin theme and set it as the default admin theme. Leave the "Enable sticky action buttons" setting disabled.
  2. Enable the Feeds module.
  3. Create a feed type.
  4. Add a feed of the type you just created. The form action buttons: Save and import and Cancel, will be visible at the bottom of the form.
  5. Don't save the feed. Instead, go to the Gin theme's settings page and enable the "Enable sticky action buttons" setting.
  6. Go back to the Add feed page. The form action buttons will no longer be at the bottom of the form. In the Gin sticky actions menu, the Cancel button is available behind the More actions button. But, the Save and import button will not be visible.
  7. In a custom module's hook_form_alter hook, add the following, which should make the Save and import button visible in the sticky actions menu:
    if (isset($form['actions']['import'])) {
      $form['actions']['import']['#gin_action_item'] = TRUE;
    }
    
  8. Refresh the Add feed page. The Save and import button will still not be visible.
💬 Support request
Status

Active

Version

4.0

Component

User interface

Created by

🇺🇸United States jsutta United States

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

Comments & Activities

Production build 0.71.5 2024