Skip to content

Instantly share code, notes, and snippets.

@jenswittmann
Created February 10, 2026 20:48
Show Gist options
  • Select an option

  • Save jenswittmann/55cfa84b33c01949c29fd8ac6eb5ac6e to your computer and use it in GitHub Desktop.

Select an option

Save jenswittmann/55cfa84b33c01949c29fd8ac6eb5ac6e to your computer and use it in GitHub Desktop.
MODX Resource Edit Button for frontend usage
[[!+modx.user.id:gt=`0`:then=`
<style>
.modx-edit-button {
position: fixed;
left: 15px;
bottom: 15px;
z-index: 9999;
font-size: .75rem;
font-weight: bold;
padding: 11px 20px;
background-color: #f1f1f1;
border-radius: 4px;
opacity: 0.1;
transition: 0.3s;
&:hover {
opacity: 1;
}
}
</style>
<a href="[[++manager_url]]?a=resource/update&id=[[*id]]" class="modx-edit-button">✏️</a>
`]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment