Bill Bryant
Forum Replies Created
-
Forum: Reviews
In reply to: [Tab Override] Great plugin!Glad you found it useful. Thanks for the great review!
Forum: Plugins
In reply to: [Tab Override] Support for visual editorHi,
There are currently no plans to support the visual editor. The plugin only supports textarea elements and the visual editor uses a contenteditable iframe body. I realize this would be a useful feature, so it’s on my list of things to look into.
For now, however, you’ll have to use spaces to indent in the visual editor or switch to the HTML editor to use the tab key.
Let me know if you have any other questions.
Thanks,
BillForum: Plugins
In reply to: [Tab Override] Is there a User Manual or Tutorial for this extension?I’m going to mark this as resolved for now. Please let me know if you have any other questions.
Thanks,
BillForum: Plugins
In reply to: [Tab Override] Is there a User Manual or Tutorial for this extension?Hi,
This plugin is meant for source code editing. When you add tabs in HTML, they will not be displayed on the rendered page. If you want the tabs to be displayed, you can try wrapping the text in a
pre
element like this:<pre> indented text some more indented text </pre>
You could also use CSS like this:
<div style="white-space: pre-wrap;"> indented text some more indented text </div>
You could also use the CSS properties
margin-left
,padding-left
, ortext-align: right;
. However, it may be easiest just to use the Visual Editor and insert a table. Also note that the plugin will only work in the HTML Editor.Hopefully that helps! Let me know if you have any other questions.
Bill
Forum: Plugins
In reply to: [Tab Override] tab override not tabbing over in htmlHi,
This plugin is meant to be used for source code editing. The tabs will not be displayed on the rendered page. If you want tabs to show on the page, you can put the text in a
pre
element like this:<pre> some text some more text etc. </pre>
However, I think it would be best to use CSS to achieve this effect. You can use the
margin-left
orpadding-left
properties to shift the text to the right.Let me know if you have any other questions.
Thanks,
BillForum: Plugins
In reply to: [Tab Override] [Plugin: Tab Override] problem issue tab override not workingHi Kkronos,
I just pushed an update that should make this much easier to fix. Once you update Tab Override, go to the Advanced section on the plugin settings page and add
#qtrans_textarea_content
to the Post field. It should look like this:#content, #replycontent, #qtrans_textarea_content
. Save the changes and Tab Override should now be working with qTranslate.Let me know if you have any other problems.
Thanks,
BillForum: Plugins
In reply to: [Tab Override] [Plugin: Tab Override] problem issue tab override not workingHi,
Thanks for reporting this. Sorry I didn’t see it earlier. I’m glad you were able to find a solution.
I’ll look into making it easier to fix compatibility issues like this in the future. My initial thought is to provide additional options to change the element ids that the plugin is applied to. If this doesn’t complicate things too much, it will be in the next version.