Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#853 2011-03-22 23:10:04
- danfarr
- New Member
- Registered: 2010-05-03
- Posts: 9
Re: hak_tinymce WYSIWYG article editor
Just upgraded to TXP 4.3 w/ hak_tinymce 1.0 and not getting the TXPImage icon on the TinyMCE bar, any ideas why?
Offline
#854 2011-03-23 14:32:53
Re: hak_tinymce WYSIWYG article editor
Does the txpimage folder exist in tiny_mce/plugins?
Shoving is the answer – pusher robot
Offline
#855 2011-04-11 19:10:35
Re: hak_tinymce WYSIWYG article editor
Hi,
Is it possible to use a language pack from TinyMCE website for hak_tinymce?
Offline
#856 2011-04-11 19:25:08
Re: hak_tinymce WYSIWYG article editor
Yes. The TinyMCE install that comes bundled is completely unmodified.
Shoving is the answer – pusher robot
Offline
#857 2011-04-12 07:13:57
Re: hak_tinymce WYSIWYG article editor
I have downloaded the Polish language pack and placed language files in relevant folders. Then I changed “en” to “pl” in hak_tinymce preferences. It doesn’t work. What should I change and where?
Offline
#858 2011-04-13 18:06:20
Re: hak_tinymce WYSIWYG article editor
Try changing languages:
to language:
It looks like that key might have changed between versions.
Shoving is the answer – pusher robot
Offline
#859 2011-04-18 12:33:39
Re: hak_tinymce WYSIWYG article editor
Thanks for the answer.
I’m using Textpattern version 4.4.0. In plugin preferences it’s language : "en",
for article body and excerpt editor and languages : "en",
for Gzip compressor editor. I’ve tried changing languages
to language
and the other way round and then the language code but the language version doesn’t change. Either the editor stays in English or it breaks.
Offline
#860 2011-04-18 17:53:41
Re: hak_tinymce WYSIWYG article editor
What kind of error is it giving? I honestly don’t have a lot of experience with the language packs, but I do nothing special with regards to the language stuff so I don’t see why it wouldn’t work.
I’ll try to run some tests on my end.
Shoving is the answer – pusher robot
Offline
#861 2011-04-19 10:39:42
Re: hak_tinymce WYSIWYG article editor
hakjoon wrote:
What kind of error is it giving?
The editor bar disappears and <p><br _mce_bogus="1"></p>
appears in the article body area.
Offline
#862 2011-05-04 19:26:42
Re: hak_tinymce WYSIWYG article editor
Howdy!
I expect this is an issue with TinyMCE and not the plugin, but I notice that when I add blockquote
to the formatselect dropdown using a theme_advanced_blockformats :
declaration, the Blockquote formatting applied returns incorrect (though technically valid) HTML.
Here’s what I mean:
<blockquote>This is a single-paragraph blockquote.</blockquote>
Using Textile to do the same thing, I’d get this markup:
<blockquote>
<p>This is a single-paragraph blockquote.</p>
</blockquote>
This issue is particularly problematic for formatting multi-paragraph quotes, where TinyMCE gives me this:
<blockquote>Paragraph 1.</blockquote>
<blockquote>Paragraph 2.</blockquote>
<blockquote>Paragraph 3.</blockquote>
..when what I want to see is this:
<blockquote>
<p>Paragraph 1.</p>
<p>Paragraph 2.</p>
<p>Paragraph 3.</p>
</blockquote>
I don’t know anything about TinyMCE. Are there any hidden settings to make it format blockquotes correctly?
Thank you!!
Offline
#863 2011-05-10 00:45:41
Re: hak_tinymce WYSIWYG article editor
John try using the “blockquote” button. It seems to behave how you want at least in the latest version of TinyMCE. Essentially just add blockquote
to one of the theme_advanced_buttons:
lines.
I’m checking to see if this works with the version that is currently in the bundle (if it doesn’t you can always upgrade)
Shoving is the answer – pusher robot
Offline
#864 2011-05-10 19:41:22
Re: hak_tinymce WYSIWYG article editor
That works like a charm, Patrick! Thanks!
Offline