thisisedie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I cannot edit P2 postsDo you mean on the site itself next to the post? You’d need to add
<?php edit_post_link(); ?>wherever you want the edit link to appear. Or just log into admin which you’ll have to do anyway to edit a post.Forum: Fixing WordPress
In reply to: I cannot edit P2 postsWhy not? What happens when you try to edit a post?
Forum: Fixing WordPress
In reply to: Slow homepageTake out the period after uk
Forum: Fixing WordPress
In reply to: I want to cry…most of my posts are just gone..I see far more than one post. There are archives going back to March.
Forum: Fixing WordPress
In reply to: CountForum: Fixing WordPress
In reply to: home page not workingIt started doing that as soon as I made a made and put a clickbank advertisement up on it
Have you tried removing it to see if that fixes the issue?
Forum: Fixing WordPress
In reply to: home page not workingUnder settings/reading… did you make that recent page static for the front page? URL?
Forum: Fixing WordPress
In reply to: Display the entire story above theIf you want the entire post to show instead of an excerpt, replace:
<p><?php echo($arr[$i]["excerpt"]); ?></p> <a href="<?php echo($arr[$i]["permalink"]); ?>" class="readmore"><span><?php _e('lรคs mer','Professional'); ?></span></a>with
<?php the_content(); ?>If that’s not what you want, please explain in more detail what you’re trying to do.
Forum: Fixing WordPress
In reply to: How can i add internal page that only users with link can seeYes, it’s possible. Just replace the current code with this:
<?php wp_list_pages('exclude=17,38' ); ?>The “17” and “38” being the ID’s of the pages you want to exclude. You can exclude as many as you want, just separate the ID’s with a comma.
Forum: Fixing WordPress
In reply to: How do I change page title colors?Your welcome ๐
Forum: Fixing WordPress
In reply to: How do I change page title colors?In the stylesheet for your theme, find this part:
h1.title{ font-weight: bold; font-size: 250%; text-shadow: #fff 1px 1px 1px; margin: .5em 0 .3em 0; padding: 0; }and add the color you want. For instance:
color:#000000;Forum: Fixing WordPress
In reply to: Help me with Database…
Forum: Fixing WordPress
In reply to: Post Author HighlightThank you SO much, that worked perfeftly :o)
Forum: Fixing WordPress
In reply to: New To WordPress using Dream HostUnzip it, FTP it to your themes directory, and then choose it under appearance in admin.
Forum: Fixing WordPress
In reply to: how to know wordpress version from DatabaseFor one thing, depending on how old the version in use is, you may need to do incremental upgrades to get to 3. For another, well, if there was a stain on your ceiling from a water leak, would you just paint over it to fix the leak?