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
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)
Let me know if it works. I get this complaint from my sales team all the time.
Let me know if it works. I get this complaint from my sales team all the time.
Jeff Falk okey. So far no good. Did QR&R afterwards and now Sugar wont stop "Loading..." but I might have made a mistake. I´ll let you know once we get this sorted out.
KGM