Settings to hide the Table of contents etc.
added in v3
Nicolas Giard
added in v3
Łukasz Polowczyk
I for one would like it to be possible to hide the content column, and then the share and "last edited by" icons should automatically appear on the page footer. This should be an option of course.
The setting to choose between:
* simply hide the share and "last edited by" buttons.
* move share and "last edited by" buttons to page footer when content column hidden
* always show share buttons and "last edited by" only in footer
p
petit lorcàn
Łukasz Polowczyk: Hello, to hide "last edited by" I created a script to insert in theme -> head HTML injection.
Your gift:
<script
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script>
$(window).on('load', function()
{
setTimeout(function()
{
$("#app > div.v-application--wrap > main > div > div.container.pl-5.pt-4.container--fluid.grid-list-xl > div > div.flex.page-col-sd.lg3.xl2 > div.page-author-card").hide("#app > div.v-application--wrap > main > div > div.container.pl-5.pt-4.container--fluid.grid-list-xl > div > div.flex.page-col-content.xs12.lg9.xl10");
}, 0);
});
</script>