snck Posted Monday at 10:51 PM Share Posted Monday at 10:51 PM 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 More sharing options...
bernhard Posted Tuesday at 08:24 AM Share Posted Tuesday at 08:24 AM Hi @snck thx for the report. On 3/31/2025 at 10:51 PM, snck said: @bernhard, were there any recent changes that could be causing this? I am on RM 6.8.1. Expand Can not think of any. Could you please try to reproduce this issue on a fresh installation and then provide the exact steps to reproduce it? Thx! 1 Link to comment Share on other sites More sharing options...
snck Posted Tuesday at 09:08 AM Author Share Posted Tuesday at 09:08 AM 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. 1 Link to comment Share on other sites More sharing options...
bernhard Posted Tuesday at 09:10 AM Share Posted Tuesday at 09:10 AM Great, yeah sounds like a good solution. The title field is often special with its global flag so this is very good to have as a reference, thx for sharing! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now