Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
tiny_mce or textile_bar for image tab > caption textarea ?
Hello txp community,
I search a solution to add a help bar buttons for caption textarea (in image tab) for help client with caption typographic enhancement.
A idea ?
Thanks
Offline
Re: tiny_mce or textile_bar for image tab > caption textarea ?
No response, I concluded there are no solutions now.
Offline
Re: tiny_mce or textile_bar for image tab > caption textarea ?
Why not (you’ll have to configure TinyMCE)? This is an admin-type plugin:
register_callback('abc_tinymce_init', 'image_ui', 'extend_detail_form');
function abc_tinymce_init() {
register_callback('abc_tinymce_script', 'admin_side', 'footer');
}
function abc_tinymce_script($event, $step, $pre, $rs='') {
return $rs.n.'<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>'.n.script_js('tinymce.init({
selector: "#image_caption",
toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
});');
}
Last edited by etc (2014-01-16 18:18:05)
Offline
Re: tiny_mce or textile_bar for image tab > caption textarea ?
Indeed, it will be a time that I take the time to learn the basics of php and plugins for Textpattern.
Offline
Offline