Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: removing articles from list“Shouldn’t h1 be the top header?”
There are those in the SEO-community that say yes. But that is not how this theme is constructed. Open
header.phpand you’ll see this …<h3><a href="<?php bloginfo('home'); ?>/"><?php bloginfo('name'); ?></a></h3>… contained within the DIV called “header”
With respect to the second issue, if I understand correctly you want this particular page (and possibly others in the future) to show up in a list separate from the other list? Are you using widgets?
Forum: Fixing WordPress
In reply to: Blank White Screen to my websiteHaha, beat me by a few seconds. Good to see it’s all sorted out.
Forum: Fixing WordPress
In reply to: Blank White Screen to my websiteIs this the site we are talking about? ryanho.net
Forum: Fixing WordPress
In reply to: Blank White Screen to my websiteHere’s a link outlining a few methods of disabling plugins when you dont’ have access to your site’s backend.
Forum: Fixing WordPress
In reply to: Blank White Screen to my websiteYou can disable your plugins by logging into your site with a FTP client then temporarily renaming your plugin folders.
Forum: Fixing WordPress
In reply to: removing articles from listWe meet again mjblake. 🙂
Issue #2 – The colour of the header title is determined by the following in your style sheet …
#header h3 a{
font-weight:100;
color: #000;
text-decoration: none;
font-size: 220%;
letter-spacing: 1px;
}Change the line
color: #000;to whatever you want. If you want it white (as it was) then it should readcolor: #fff;Issue #1 – I don’t quite understand the question. What are you trying to accomplish?
Forum: Fixing WordPress
In reply to: Blank White Screen to my websiteHi ryanweijian,
Use an FTP client like FileZilla to login to your site and undo whatever it is you did.
Forum: Fixing WordPress
In reply to: How to add author link?Hi thegameison,
The template tag
<?php the_author_link(); ?>will link the author’s name to the website. So, I’m assuming your theme uses it. To have the author’s name link to the posts he has written you want to use<?php the_author_posts_link(); ?>Forum: Fixing WordPress
In reply to: Malware on my wordpress blog – need help!Hi gaylea,
Sucks doesn’t it? Unfortunately the rogue code could be in ANY file – theme files, uploads folder, WordPress core files, the database itself. You have some work to do.
Try reading through some of these links. Lots of good info can be gleaned from them.
http://codex.wordpress.org/FAQ_My_site_was_hacked
http://wordpress.org/support/topic/268083#post-1065779
http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/
http://ottodestruct.com/blog/2009/hacked-wordpress-backdoors/As to how the attacker got in it could be any number of ways. It may be a vulnerable plugin, your FTP credentials may have been compromised, perhaps there is malware on your very PC which allowed the attacker access to login info etc. Are you on shared hosting? If so, they could have successfully attacked your site by first breaching another on the server.
Study your server logs for any hints. And peruse the links I gave you.
Forum: Fixing WordPress
In reply to: How to make blog inaccessible with redirect during set upHi skimonline,
One option to consider is the Maintenance Mode plugin. Once activated, non-logged in visitors will simply see a “splash page”. By default, the plugin uses
maintenance-mode_site.phpto display this splash page but includes an option to use your own. If so inclined, you can create your own file called503.phpand upload it to the active theme’s directory and use that file to display the splash page. Using your custom503.phpfile you can make your splash page appear the way you want including calling a specific css file for it.Forum: Fixing WordPress
In reply to: Error displaying blog posts on a custom blog page?Okay, you have created a Page Template. But have you assigned that new Page Template to the page in question?
Forum: Themes and Templates
In reply to: Removing tabsYou’re most welcome. 🙂
Forum: Themes and Templates
In reply to: Removing tabsOops, I’m talking posts and you’re talking pages. 🙂 The same applies when in the Edit Pages screen.
Forum: Themes and Templates
In reply to: Removing tabsIn the Edit Posts screen you will see a list of your posts. Hover over a post title and at the bottom of your browser window you’ll see a link that looks something like …
yoursite.com/wp-admin/post.php?action=edit&post=32The ID is the number, in this case 32.
Forum: Plugins
In reply to: plugins for Ban and BotsHave you tried the Bad Behavior plugin? It blocks many of the bots out there.