devilmaycry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Time in each postThis code should do the trick, just overwrite your old code with the following:
<small><?php the_time(‘F jS, Y’) ?> <?php the_time() ?> by <?php the_author() ?> </small>
Forum: Fixing WordPress
In reply to: Time in each postPlace this code anywhere you would like the time to show in your single.php and index.php template files.
<?php the_time() ?>
Forum: Themes and Templates
In reply to: updated theme : Fast Track 2.0Very sexy looking template sadish, I will certainly give this a whirl on one of my personal blogs. Cheers. 🙂
Forum: Fixing WordPress
In reply to: Why can’t an author delete his own post?That’s strange, I’d imagine an author would be able to delete his or her own post… I’ll take a quick look now.
Forum: Themes and Templates
In reply to: Style Sheet missing…HandySolo is correct, uploading your template folders into the wrong location is the most common example of missing style sheet errors.
Forum: Fixing WordPress
In reply to: Link ColorYup, the cascading style sheet. You will need to edit that in the area I mentioned in my last post to alter the linking colors.
Forum: Fixing WordPress
In reply to: Link ColorOpen up the style.css file that came with your template and look for something similar:
a {
color: #000;
}Just change the color to anything you like. If you’re not familiar with hex colors, you can consult this chart or perform a standard Google search for “hex colors” or “hex charts”.
http://www.realapplets.com/images/hexcolorchart.gif
Hope this helped.
Forum: Plugins
In reply to: WP_PHPBB_Integration (Version 1)This sounds awesome! I have been waiting for a phpBB integration hack to be released for sometime. I will give this a whirl right now. Cheers!
You would have to add the urls you would like to be redirected in your .htaccess file, as well as where you would like them to be redirected to.
Forum: Plugins
In reply to: AJAX Plugins are all the rage…I use the ‘Live Spell Checker’ which uses Ajax technology. It’s a pretty helpful plugin for those of us who are too idle to proof-read. 😉
http://www.lab4games.net/zz85/blog/wordpress-plugins/live-spell-checker/
Forum: Plugins
In reply to: Which Plugins are a must have to prevent comment SPAM?I just use the Askimet plugin which comes as standard with the new WordPress 2.0 series. Although I have heard good things about SpamKarma2, I think I might give it a try.
Forum: Fixing WordPress
In reply to: Sidebar On Every Page?Try adding it just above the following line of code (also located in the files I mentioned in my previous posts):
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Hebrew no longer displays after upgrade to wp 2 from 1.5Looks fine to me too, although I don’t speak the language myself I was able to view your blog in both Internet Explorer 7 Beta and Firefox perfectly.
Forum: Fixing WordPress
In reply to: Sidebar On Every Page?If you’re familiar with HTML/PHP then just apply this code to the appropriate template files (index.php / page.php and single.php I believe).
<?php get_sidebar(); ?>
Forum: Fixing WordPress
In reply to: How to make the name of the author displayJust add this php code to your template to display the post authors name:
<?php the_author(); ?>