Tools are content items that users can drag into their email or landing page to add content. Tools can work work in email mode, web page mode, or both modes.
You can choose which tools to enable or disable for the Unlayer editor instance. This can be done in the unlayer.init
method.
Here's some examples...
Disable Image Tool
unlayer.init({
tools: {
image: {
enabled: false
}
}
});
unlayer.init({
tools: {
'custom#SLUG': {
enabled: false
}
}
});
You can reposition tools to appear before or after other tools.
unlayer.init({
tools: {
image: {
position: 1
}
}
});
Updated 8 months ago
What's Next
Custom Tools |