Hi.
I´m getting requests asking if the red circle in the picture can be made bigger. The email module is not in Studio. So is there a way?
Thanks,
KGM
Hi.
I´m getting requests asking if the red circle in the picture can be made bigger. The email module is not in Studio. So is there a way?
Thanks,
KGM
you can add emails to Studio by following this thread Module ProspectLists not in Studio? Which *defs.php files aren't recognized in Custom folder?
Please let me know if it works and if you can alter the field size there
Bests
Björn
you can add emails to Studio by following this thread Module ProspectLists not in Studio? Which *defs.php files aren't recognized in Custom folder?
Please let me know if it works and if you can alter the field size there
Bests
Björn
I added an empty file names studio.php to /modules/Emails/metadata/ then ran QR&R, and sure enough, the Email module now appears in my Studio:
Very nice indeed!
However, the field that needs to be enlarged (description_html) isn´t in that list :/
So I guess this field can´t be changed with configuration...
Thanks, KGM
Hi,
You should do this programmatically:
Find the file:
/modules/Emails/clients/base/fields/htmleditable_tinymce/htmleditable_tinymce.js
Create a custom version of it into path (meaning copy the file into this path):
custom/modules/Emails/clients/base/fields/htmleditable_tinymce/htmleditable_tinymce.js
Then, find the line:
_renderView: function()
Scroll down to this block of code:
if (this.$el.find('iframe').length === 0) {
iFrame = $('<iframe>', {
src: '',
class: 'htmleditable' + (this.def.span ? ' span' + this.def.span : ''),
frameborder: 0,
name: this.name
});
and directly below this line:
frameborder: 0,
add the following line of code:
height: 500,
(or change 500 to whatever size you wish)