W2014
Forum Replies Created
-
The bug is still there, no change, TinyMCE Advanced or wordpress does not accept having plain text or double br, it has to be wrapped in something. There are many topics on this, but none worked for me, i did not try this , now i have a different approach, i leave it like it is, because I have many WordPress installations and i would have to make these changes overall. So, crazy that there is no plugin that solves this, or even that TinyMCE Advanced is not addressing this issue.
On the other Hand, the “br” – element is “a bit strict” defined in html5: the-br-element, so probably it is bad practice to use plain text or double br, so wordpress automatically corrects this.Forum: Plugins
In reply to: [Crelly Slider] Crelly Slider not displaying in index.php filehello, do you have also jQuery Tools, that could be a problem, do you see the slider in the code/page source-view? your code should look like that:
<div class="top_slider"><?php if(function_exists('crellySlider')) crellySlider('top_slider1'); ?></div>try also to change the quotes: your cotes should be like ‘
Hello Andrew, i still have this problem. Every Text that is not formatted will get a <p> Tag when i switch from text/html to visual and then back to html. How can i maintain the Text unformatted?
So i write in html: aaa
Then switch to visual.
The Back to html and i have <p>aaa</p>. that is crazy.thanks, gabriel
Hello Tom, Thank you, there are 3 speed steps, fast, middle and slow…
when i load the standard wp-editor, it does not add the p. so that is a bug in TMA.
Hallo Andrew, i don’t know where this bug comes from, but how can i stop putting <p> around all text, that is really annoying?
version 4.3.10 works normally. you mean, that they changed something in tinyMCE? why don’t you use the bug-free older version as a base until there is a new version? otherwise, this is also a TinyMCE Advanced bug.i have now a clean functions.php, no wpautop, no force root…etc…the <p> bug is still there.
you have to install version 4.3.10, check “Keep paragraph tags” and write in the html editor:
some text some textswitch from html to visual and back to html:
it remains:
some text some textlike it should. in 4.3.10.1, i make the same, the result in the html editor:
<p>some text some text</p>if i have this in a div, that messes up all my css.
Andrew, sorry, but i think you don’t understand what i mean.
what i mean is:in the version 4.3.10 you don’t have these tags. i’m not talking about tags i in the visual but in the html editor. so, when i write:
some text<br /> some textand klick “Keep paragraph tags” i want everything to stay as it is. that is ok in the version 4.3.10. in the latest version, i write:
some text<br /> some textand when i switch to the visual and then back, i have in the html editor:
<p>some text<br /> some text</p>so, everything is paragraphed. i talk about the html/text editor, not about the visual. for me this is a huge bug, i can’t understand that nobody is disturbed about this. can this behaviour come from the functions.php? i don’t think so…
Forum: Themes and Templates
In reply to: validate not working when i use – get_template_partok…i solved it myself…i just used:
<?php include(locate_template('/ssi/struc-en_formprocess_frontpage.php')); ?>and it works now…
yes, there are some bugs around <p>, i have the opposite problem, that they add everywhere…probably you deactivated “Keep paragraph tags”, but if you activate it, then you have <p> everywhere…
exactly…sorry…that is what i get also…but that is not correct.
If the “Keep paragraph tags” option is enabled, the text should remain as it is, not adding <p></p> to it. Keep paragraph tags means, keep the tag -> if there, not add paragraph to the text.
what must i do to keep the original tags?
version 4.3.10 makes this:some text<br /> some textversion 4.3.10 works like expected. it “keeps” the tags, but it does not add any.
version 4.3.10.1 makes this:
<p>some text<br /> some text</p>the
<p>-tag was added to the text.
for me this is a huge bug. that can mess up all your layout.Hello, Andrew, i mean in the html/code editor i have:
some text<br /> some textin the visual i should have:
sometext
sometextwhen i switch to visual, i have:
sometextsometext
and in the html-mode/code editor i have:
<p>some text</p><br /> <p>some text</p>that is a bug, the editor changes every simple text to paragraph.
Hallo Andrew,
thankx for the reply,
the point is not that i don’t want p tags, but when i switch to visual, all the text is
<p>– tagged, so i think, this is something that nobody wants. there are also some issues with p-tags in the browser. but anyway, you have also situations whre you don’t want theptag…so that is the issue.Forum: Plugins
In reply to: [Crelly Slider] preload symbol and blurok, i figured it out, everything (blur & symbol) is in the crellyslider.css
.crellyslider > .cs-preloader > …
Forum: Plugins
In reply to: [Crelly Slider] slider in the theme not showing upyes, it works now, but i had to replace all “$” with “jQuery”, so i.e.:
$(function() { $.get("wp-content/themes/mytheme/text/xxxx.php",function(data){ var inject = '<p id="strip">'; $('item', data).each(function(i)...with:
jQuery(function() { jQuery.get("wp-content/themes/mytheme/text/xxxx.php",function(data){ var inject = '<p id="strip">'; jQuery('item', data).each(function(i)...so, in my case, there was just a small script, but in case that others have this issue, this is the problem. i saw, that the crelly slider also has a
$(function), so, there is will appear an inevitable conflict. you can test ist on the same page with such a script…and it will not work.