Hello,
Is it possible to add the "insert/edit table" to mass mailer creator?
Hello, Is it possible to add the "insert/edit table" to mass mailer creator? Sometimes communicating your problem and putting it out there is enough to solve it |
go to administration/notifies.php at line 194 you will see this 'body' => array('type' => 'textarea','name' => 'body','value' => $sBody,'caption' => $sBodyC,'required' => true,'html' => 1,'checker' => array ('func' => 'length','params' => array(10,32000),'error' => $sErrorC,), 'db' => array ('pass' => 'XssHtml', ), ), change 'html' => 2, it will change the tinymce to the full features mode. Enjoy so much to do.... |
I already have it set on html #2 and several buttons are missing in TinyMce including the "table" one. 'body' => array( 'type' => 'textarea', 'name' => 'body', 'value' => $sBody, 'caption' => $sBodyC, 'required' => true, 'html' => 2, 'checker' => array ( 'func' => 'length', 'params' => array(10,32000), 'error' => $sErrorC, ), 'db' => array ( 'pass' => 'XssHtml', Sometimes communicating your problem and putting it out there is enough to solve it |
open file: templates/base/scripts/BxBaseConfig.php and this: function BxBaseConfig($site) { and this line: theme_advanced_buttons3_add : "emotions", change to: theme_advanced_buttons3_add : "table,preview,media,fullscreen,emotions", |
Awesome!!!! thank you Okweb, that's really cool!! Is it also possible to upload an image from the computer without a url link?
open file: templates/base/scripts/BxBaseConfig.php and this: function BxBaseConfig($site) { and this line: theme_advanced_buttons3_add : "emotions", change to: theme_advanced_buttons3_add : "table,preview,media,fullscreen,emotions",
Sometimes communicating your problem and putting it out there is enough to solve it |
If you want all the table-control buttons, try using... "tablecontrols" instead of "tables"... for example:
http://pkforum.dolphinhelp.com |