nef
Forum Replies Created
-
Forum: Plugins
In reply to: Sidebar widget plugin makes TinyMCE disappear*bump*
can anyone take a look at this? 🙁
Forum: Plugins
In reply to: Sidebar widget plugin makes TinyMCE disappearFor some reason wordpress’s pastebin is not working.
I pasted the code in the regular pastebin.com here.Forum: Plugins
In reply to: Post summaries for the front pageThat’s what was missing.
Thank you very much!Forum: Plugins
In reply to: Post summaries for the front pageThanks for your replies. Sorry for the late answer, I thought I would receive an email when I had a reply on this thread (but I didnt).
I’m using the Silhouette theme and the_content tag only appears only once in the loop. For some strange reason it doesn’t work as expected. When I change it as you mencioned, on the front page the content appears, and when you click to read the full post, only the excerpt is shown.
Here is the relevant part of my theme’s index.php:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><?php the_title(); ?></h1> <?php the_content(__('Read more'));?><div style="clear:both;"></div> <div class="postinfo"> <?php the_time('F j, Y'); ?> | Filed Under <?php the_category(', ') ?> <?php edit_post_link('(Edit)', '', ''); ?> </div>Thank you very much for your help.
Forum: Fixing WordPress
In reply to: Create searchable text that can’t be seen in a postThanks a lot, it worked great!
For some reason the code editor closes the <span> tag at the first blank line it encounters.
For example if I write this:
<span> Line 1 Line 2 </span>after saving it looks like:
<span> Line 1 </span> Line 2I don’t know why this happens, but i guess I will just use a script to erase these lines.