Developer
Supported
Expresso
ExpressionEngine 2, ExpressionEngine 3, ExpressionEngine 4, ExpressionEngine 5
Back to this add-on's main page
View Other Add-ons From PutYourLightsOn
Expresso toolbar absent in channel entries after updating EE to 3.5.7
Support (Resolved)
Dipsacus
|
Posted: 23 May 2017 05:07 AM |
|
|
|
Since updating EE to the latest version Expresso seems to have stopped working. I’m using Expresso 4.2.4. The expression toolbar has disappeared from Expresso fields in channel entries, and the text box has gone to the right. I haven’t changed anything in the settings.
|
|
|
PutYourLightsOn
|
Posted: 23 May 2017 05:55 AM |
# 1
|
|
Developer
|
We’re not seeing any issues with Expresso 4.2.4 in EE 3.5.7. Can you please check your browser console for Javascript errors and let us know if anything shows up?
|
|
|
Dipsacus
|
Posted: 23 May 2017 06:25 AM |
# 2
|
|
|
Chrome console is showing:
admin.php:1024 Uncaught SyntaxError: Unexpected token }
admin.php:1036 Uncaught SyntaxError: Unexpected token }
admin.php:1048 Uncaught SyntaxError: Unexpected token }
admin.php:1060 Uncaught SyntaxError: Unexpected token }
admin.php:1072 Uncaught SyntaxError: Unexpected token }
|
|
|
PutYourLightsOn
|
Posted: 23 May 2017 06:30 AM |
# 3
|
|
Developer
|
Does clicking on those errors reveal any more info? Or can you perhaps paste the block of code around line 1024 of your html source code?
|
|
|
Dipsacus
|
Posted: 23 May 2017 08:04 AM |
# 4
|
|
|
{ name: “CSS Style”, element: “table”, attributes: { “width: 0px” } },
that’s line 1024 - syntax error for table attributes, which I’ve since deleted in the settings and everything works fine again. Thanks for your help. I was attempting to change the default in table settings from 500px to 0px. Can you suggest how this can be done?
Thank you very much for your help.
|
|
|
PutYourLightsOn
|
Posted: 23 May 2017 08:22 AM |
# 5
|
|
Developer
|
Perhaps as follows:
{ name: "CSS Style", element: "table", attributes: { "width": "0px" } },
|
|
|
Dipsacus
|
Posted: 23 May 2017 10:37 AM |
# 6
|
|
|
Thanks - that looks right but it doesn’t work, default width is still 500.
|
|
|
PutYourLightsOn
|
Posted: 23 May 2017 10:51 AM |
# 7
|
|
Developer
|
Just realised you used attributes instead of styles, try this:
{ name: "CSS Style", element: "table", styles: { "width": "0px" } },
|
|
|