Doodlebee
Forum Replies Created
-
which is Outlook, and direct from websites (we link to other sites’ articles)
That’ll do it.
If your boss isn’t sending you plain text emails, then you’re copying/pasting text that’s been formatted by Microsoft – just like it does for Word.
Also, if you copy/paste from other websites (like directly from the screen) chances are that text is also formatted.
Your best option is to take the information, copy and paste it into a plain text editor, and then copy/paste *that* into WordPress.
Forum: Everything else WordPress
In reply to: Hosting images on my dreamhost, should I flickr?Flickr gives you a link to your images. It’s nothing more than cut-n-paste. but yes, you’d have to put the code into your posts.
Forum: Fixing WordPress
In reply to: How to show tag images?Do you have it within your Loop?
I think more information is needed – there’s not much to go on here. pretty much all you say is “this doesn’t work,” but it’s not clear as to why – especially since the code is pretty much plucked from codex. Can you not provide the *exact* code you have in your template file for this section (don’t post the whole file here – if you must, use pastebin please)? Tell us if it’s in the Loop or in the functions.php file?
Forum: Fixing WordPress
In reply to: How to show tag images?Why doesn’t it work? Do you have an image uploaded in that location? It’s looking for an image that has the same name as the tag. So if you have a tag called “peanuts” then you need to upload “peanuts.jpg” on example.com/images folder. Do you?
Forum: Everything else WordPress
In reply to: Hosting images on my dreamhost, should I flickr?With Flickr, you get a larger community and more exposure. You also don’t have to use your own server resources to host your images – more free space is left open to you on your own space.
But also with Flickr, you have to abide by their terms, and if flickr goes down, then your images go down until they come back up.
If you want lots of traffic, use flickr. If you don’t care, and want more control over your images, and you can afford the space, use your own hosting space. it’s really just a matter of what you want to do with them, and how much control you want to have over them.
Are you writing your posts in Microsoft Word, and then copy/pasting that text into WordPress? You’ll see this kind of stuff when you do that (or use a Rich-Text format when writing posts). The reason is because these characters have their own special representatives within the program that’s running them that’s compatible ONLY to the program that’s running them. Browsers are meant to view characters in a general format, so all kinds of people can read your text – even those that do not have Microsoft Word.
Notepad may also not be the best choice for you to do this either, since it’s known to sometimes throw in some fun here and there.
Your BEST option is to write your posts within WordPress – that’s what the editor is there for. You can write and save as drafts so they aren’t published until your are ready. If you need to have the formatting available, the “Use Visual Rich Editor” has many Word-like buttons for you to use. There really is no reason to use an external editor, and then copying/pasting that into WordPress – this is generally what happens when you do that.
Forum: Fixing WordPress
In reply to: pagination system in a static pageuse <!–nextpage–> where you want the Page to paginate. And be sure to use the right tags in your theme files to display the pagination links.
You might want to read this.
Forum: Themes and Templates
In reply to: Theme ChangeAgain, that depends on your definition of “the code I modified.” if you’re talking about code within your theme files, then no, it won’t save it. If you’re talking about stuff that’s been added to the database, then yes, it should save the stuff in the database. But *theme* code, no. I can’t really get anymore clear than that…
Forum: Plugins
In reply to: Custom post listingsI suppose you could check to see if comments are associated with the post, but that would require a custom function. You’d probably have to query the database first because there’s no existing parameter for checking if there’s comments or not (not that I’m aware of anyway) and use that to add to your query. I don’t know of any plugins that do this, but a forum search comes up with a bunch of stuff. Maybe one of those can help you?
Forum: Fixing WordPress
In reply to: Vina – How Do I Remove the Meta?Not familiar with the theme – but maybe in the sidebar.php file? Look for <?php wp_register(); ?> and/or <?php wp_loginout(); ?>
Forum: Plugins
In reply to: Custom post listings1) show ten most recent excerpts, random order
<?php query_posts('showposts=10&order=RAND'); if(have_posts()): while(have_posts()): the_post(); ?> <?php the_excerpt(); ?> <?php endwhile; endif; ?>2) show 25 most recent posts
<?php query_posts('showposts=25'); if(have_posts()): while(have_posts()): the_post(); ?> <?php the_content(); ?> <?php endwhile; endif; ?>more info on queries here.
Forum: Themes and Templates
In reply to: Customize output of sidebar widgetsForum: Installing WordPress
In reply to: Error on Options Page (wordpress-mu)You might try asking this over at the WordPress MU Forums.
Forum: Fixing WordPress
In reply to: Please Help Cant find my blog and i get a 500 Internal server errorThis happened after you activated a plugin? Then I’d say remove the plugin and see if that fixes it. if it does, then probably read the “readme” files (or instructions) that came with the plugin and see if you missed a step when you installed it. if you didn’t, contact the plugin author and see what’s up.
Forum: Themes and Templates
In reply to: Theme ChangeThat depends. if you changed settings (that are in the database – such as what’s in your widgets, or your site name) then they’ll be retained. If you changed the code within the theme files, then no, they won’t be.