Jump to content

RM adding title field to images fields with custom fields


snck
 Share

Recommended Posts

Today I noticed something strange on a client website (in dev). I have three image fields (e.g. images) that use custom fields to add a field (called image_credit). Somehow RockMigrations ins adding the title (PageTitle) field on every modules refresh to these templates (e.g. field-images) although I have no migrations in place for these fields. I cannot find any hint in the logs as well. Whenever I manually delete the field in the GUI and do a modules refresh, the field is added again. Disabling RockMigrations ($config->noMigrate = true) stops this behavior, but does of course not solve my problem.

@bernhard, were there any recent changes that could be causing this? I am on RM 6.8.1.

Any help is appreciated! 🙂

Link to comment
Share on other sites

Hey @bernhard,

I did some further research and at least came up with a workaround. As title is a global field, I added the following config migration:

<?php

// site/RockMigrations/templates/field-images.php

return [
  'fields' => [
    'image_credit' => [],
  ],
  'noGlobal' => 1, // prevent global fields like title from being added to the template during migrations
];

After manually removing the title field from field-images in the GUI this prevents RM from automatically adding it.

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...