Skip to content

Instantly share code, notes, and snippets.

View joekolade's full-sized avatar

Joe Kolade joekolade

View GitHub Profile
@joekolade
joekolade / error.typoscript
Created April 8, 2023 14:19
[Ooops an error occured...]
# TS
config.contentObjectExceptionHandler = 0
@joekolade
joekolade / clear_cache.sh
Created April 8, 2023 14:19
[Neos clear live cache] #neos
# clear cache in production
FLOW_CONTEXT=Production ./flow flow:cache:flush --force && ./flow
@joekolade
joekolade / multicol.scss
Created April 8, 2023 14:20
[Neos nodetypes multicol]
// Columns
//
.neos-nodetypes-twocolumn,
.neos-nodetypes-threecolumn {
display: flex;
.column {
padding-left: 15px;
padding-right: 15px;
}
}
@joekolade
joekolade / interaction.js
Created April 8, 2023 14:21
[Neos interaction JS]
if (typeof document.addEventListener === 'function') {
document.addEventListener('Neos.PageLoaded', function(event) {
// Do stuff
}, false);
}