|
|
Use taxonomy as css class in View Loop
Started by: rubenM-3
in: Toolset Professional Support
Quick solution available
|
|
2 |
5 |
3 years, 7 months ago
rubenM-3
|
|
|
Hide/ remove ‘dynamic sources’ for core blocks in the block settings
Started by: Paul Marconi
in: Toolset Professional Support
Quick solution available
Problem:
How to hide the Dynamic Sources button in the sidebar and inside the block editor?
Solution:
Add the code below to function.php file of your theme to hide the dynamic sources button inside the editor via CSS:
add_action('admin_head', 'chr_admin_css');
function chr_admin_css() {
echo '<style>
.components-toolbar .toolset-inline-field-button {
display: none !important;
}
</style>';
}

You can hide the sidebar option from the normal Gutenberg options (The three dot menu at the top right)

|
|
3 |
5 |
3 years, 7 months ago
Paul Marconi
|