Question: What happened to the html editor in page editor?
Is it missing due to upgrade or not installing correctly, or?
Thank you
Robyn
Question: What happened to the html editor in page editor? Is it missing due to upgrade or not installing correctly, or? Thank you Robyn Authors Bag Portal is a Crowd Sourcing Collaboration (CSC) |
It should be there for each HTML Block; unless you turned it off; although that is done through cookies. What exactly do you mean by page editor? Geeks, making the world a better place |
Hi, Yes,
The HTML Block no longer has the tinymce HTML editor. Its gone. Any ideas? Its 7.3.0. build.
Thank you, Robyn
Authors Bag Portal is a Crowd Sourcing Collaboration (CSC) |
Not enough information. If it appears on the front end but not in the back end then my guess some javascript is loading that is keeping TinyMCE from loading. While on that page; go to your browser error consol and see if there are any JS errors reported. Geeks, making the world a better place |
HTML page editor in "Pages Builder" works fine in Boonex Demo through my browser. Its just my system... I tried installing a fresh install and the same thing...? What is the best Php version to run Dolphin on? Something has to be somewhere... Its not on my browser end, its not in the dolphin install. I installed a clean empty fresh version, but nothing... Its all the same. Robyn Authors Bag Portal is a Crowd Sourcing Collaboration (CSC) |
If anyone else has a problem with the page editor running Under Cloudflare, the inc/classes/BxDolPageViewAdmin.php files needs to look like this to maintain the toggle link between the HTML / Test editors:
$aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => 2, // $bMceEditor ? 2 : 0, 'html_toggle' => true, 'dynamic' => true, 'attrs' => array ('id' => 'form_input_html'.$iBlockID, 'style' => 'height:250px;'), 'name' => 'Content', 'value' => $sBlockContent, 'colspan' => true, );
Robyn Authors Bag Portal is a Crowd Sourcing Collaboration (CSC) |
Thnax :)
If anyone else has a problem with the page editor running Under Cloudflare, the inc/classes/BxDolPageViewAdmin.php files needs to look like this to maintain the toggle link between the HTML / Test editors:
$aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => 2, // $bMceEditor ? 2 : 0, 'html_toggle' => true, 'dynamic' => true, 'attrs' => array ('id' => 'form_input_html'.$iBlockID, 'style' => 'height:250px;'), 'name' => 'Content', 'value' => $sBlockContent, 'colspan' => true, );
Robyn
|