Feature/Hide GitHub-Related Buttons and Views Based on Configuration #122
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This pull request introduces a new feature that allows hiding GitHub-related buttons and views in the Pages CMS based on a configuration setting. The objective is to simplify the user interface for content writers who may not use GitHub or prefer a cleaner, more focused interface.
Details
New Configuration in
.pages.yml
:When the
github
option is set tofalse
, all GitHub-related buttons and views will be hidden.Why This Feature?
What Was Changed
UI Elements Hidden:
How It Works:
github: false
is set in the.pages.yml
configuration, the GitHub buttons are hidden.github
is not set or set totrue
, the buttons remain visible.Code Changes
github
flag from the configuration.Testing
github: false
→ Confirmed that all GitHub-related elements are hidden.github: true
or not set → Confirmed that all GitHub-related elements are visible.Notes
github
is not set, the default behavior (showing GitHub buttons) is maintained.