steeephiii
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Please don't ignore me :?/How to space text the way I want ityou could try an editor plugin like for example the ultimate tinymce or tinymce advanced
http://wordpress.org/extend/plugins/ultimate-tinymce/
http://wordpress.org/extend/plugins/tinymce-advanced/for me, using those fixed the problems with the line breaks being erased when saving a posting.
yes, i’ve got the same problem, but it only occurs on some of the author images, not on all.
EDIT: i tried the following now and it helped in my case: i noticed that the images that were not working had the file extension .jpeg. i opened them in photoshop and resaved them as .jpg files. the pics are working again now.
i also tried using a .png instead and this didn’t work either…Forum: Plugins
In reply to: [List Yo' Files Pro] [Plugin: List Yo' Files] File lists in sidebar widget?you could do the following: put the shortcode into a posting, then insert this code with the correct post id into the sidebar.php
<?php $post_id = 26; $queried_post = get_post($post_id); $content = $queried_post->post_content; $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); echo $content; ?>(found that code here: http://www.tipsandtricks-hq.com/query-or-show-a-specific-post-in-wordpress-php-code-example-44)
this works for me!