Problems using Insert/Edit image in Firefox CMSB 3.09

7 posts by 3 authors in: Forums > CMS Builder
Last Post: July 5, 2017   (RSS)

By garyhoffmann - June 29, 2017

I'm trying to do my first site with 3.09.  When i try to use the Image icon and upload an image, I click on the upload button next to Image URL and a new window pops up with the same window

Attachments:

2017-06-29_14-45-55.png 55K

By Damon - June 29, 2017

Hi Gary,

From the screenshot, it looks like the WYSIWYG editor is displaying an older version.

Here some steps to take:

  1. Reupload the CMS Builder 3.09 files.
  2. Clear the cache in your browser.
    https://www.interactivetools.com/forum/forum-posts.php?postNum=2240293
  3. Add the advanced tab back into the new version of CMS Builder:
    https://www.interactivetools.com/forum/forum-posts.php?postNum=2240293

Let me know if these steps make the new insert image dialog box appear.

Thanks!

Cheers,
Damon Edis - interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

By garyhoffmann - June 29, 2017

One step closer - I found the importcss plugin - that imports the CSS from the included CSS files...now just the fonts...

By garyhoffmann - June 29, 2017

This looks like a bug in the docs or the implementation that cmsb is using.  I scoured the tinymce.min.js file and found that the setting name needs to be fontsizeFormats, not fontsize_formats - After setting fontsizeFormats to my long string, it took no problem.

So, at least for now, it looks like I'm over the hump on my issues with TM4.

Thanks,
Gary.

By Dave - July 5, 2017

Thanks Gary, 

Nice catch, it looks like they fixed the fontsize_formats bug in a recent update: 

Version 4.6.1 - May 10, 2017
FIXED bug where fontsize_formats option had been renamed incorrectly.

Ref: https://www.tinymce.com/docs/changelog/#version461-may102017

I'll update tinymce for the next CMSB release.  In the meantime you could just list both for compatability: 

// fontsizeselect options - reference: https://www.tinymce.com/docs/configure/content-formatting/#fontsize_formats
fontsize_formats: '8pt 10pt 12pt 14pt 18pt 24pt 36pt',
fontsizeFormats:  '8pt 10pt 12pt 14pt 18pt 24pt 36pt', // for tinymce < 4.6.1

Thanks!

Dave Edis - Senior Developer
interactivetools.com

By garyhoffmann - July 5, 2017

That's exactly what I did - thank you.