April 2024 Vtiger Extensions News
Welcome to our April 2024 blog update! We’re thrilled to share the latest developments with you, including exciting news about our newest features, enhancements, and fixes for our existing extensions.
Welcome to our April 2024 blog update! We’re thrilled to share the latest developments with you, including exciting news about our newest features, enhancements, and fixes for our existing extensions.
Welcome to our March 2024 blog update! We’re thrilled to share the latest developments with you, including exciting news about our newest features, enhancements, and fixes for our existing extensions. Plus, we have a significant announcement to make: the initiation of our latest project, Defalto CRM.
How does it all work? When sending the email of the given record, the related documents will be attached to the email, the attached documents will be selected from the folders you selected in the template settings in the Settings tab. More info in our blog!
Do you have a small CK Edtitor screen and you want to make it bigger with one click? Follow our tip how to add Maximize button to your Editor. Implementation Go to folder: libraries/jquery/ckeditor and find file config.js We need to edit file config.js by removing maximize from the config.removePlugins line and put it to config.plugins line So change config.js from: CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; //vtiger editor toolbar configuration config.removePlugins = 'save,maximize,magicline'; config.fullPage = true; config.allowedContent = true; config.disableNativeSpellChecker...