transpersonal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Spam Being Written to Header.phpInstall this firewall plugin:
http://www.seoegghead.com/software/wordpress-firewall.seo
Yop may also want to take these additional steps to further secure your wp install:
http://www.smashingmagazine.com/2009/01/26/10-steps-to-protect-the-admin-area-in-wordpress/
Forum: Fixing WordPress
In reply to: Pages PageYou should create a custom page template:
http://codex.wordpress.org/Pages
Then create a page and assdign the custom template to it.
In your custom template place this tag:<?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’); ?>
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?Locate this block of code in your stylesheet (go to Themes >> Editor >> Style.css):
#gallery-1 .gallery-item {
float:left;
margin-top:10px;
text-align:center;
width:50%;
}Change the last line to:
width: auto;
Forum: Fixing WordPress
In reply to: Clicking on Category presents error codeDid you recently change your permalinks to just %postname%? Try reverting back to the old “ugly” permalinks. If the problem goes away then you will know it’s a permalinks problem. If this is the case take the htacess file from the blog that is working and compare that to the htacess file of the blog that isn’t. Change the permalinks to %postname% again and add any of the htacess rules you were missing from the good htaccess file.
If permalinks isn’t the problem then just ignore the above.
Forum: Fixing WordPress
In reply to: “>” character appears above headerYour header.php content has been deleted. Use the pastebin.
Forum: Fixing WordPress
In reply to: 2nd wordpress within same installationYou need to use WordPress Mu to have multiple blogs under one installtion:
Never used it myself but I think it enables you to make changes to your theme once and have all the blogs using that theme take effect. And I’m not a 100% on this but I don;t think your can edit themes in the backendof WordPress Mu – in which case you would have to edit them on your desktop and upload them to your theme’s directory each time you want to make a change.
There are a few plugins for translation though:
http://wordpress.org/extend/plugins/global-translator/
Why not give that a try before translating your site for eachlanguage manuually.
Forum: Fixing WordPress
In reply to: How can i point a navagation link to a external lInk?Do you mean?:
<a href="http://chadmartel.photostockplus.com/">My Online Store</a>Forum: Fixing WordPress
In reply to: “>” character appears above headerJust paste the contents of your header.php here and we will take a look at it.
Forum: Fixing WordPress
In reply to: HELP! My WordPress site has been hackedAlso if they did it through a file they put in your root directory then that means it was a ftp hack. So the first thing you should do is change your ftp password and username and use secure ftp from now on.
Forum: Fixing WordPress
In reply to: HELP! My WordPress site has been hackedInstall and scan your active theme with this plugin:
http://wordpress.org/extend/plugins/antivirus/
It will scan your files to see if any virus codes were left. Next install this incredible plugin:
http://www.seoegghead.com/software/wordpress-firewall.seo
I know one person whose blog used to get hacked once a week until this plugin put an end to all the sql injection attacks. And aside from changing the wordpress password, also change the username from the default admin to something else (this needs to be done via phpmyadmin. Speaking of which change the password to that as well and your ftp credentials. You may also consider changing the default wordpress table prefix from “_wp” to something else.
Forum: Fixing WordPress
In reply to: “>” character appears above headerGo to header.php in your theme’s editor and hold down the control key and press F. Now inside the search dialog box type >” and press enter. If you find a loose one delete it and save the page.
Forum: Fixing WordPress
In reply to: HELP! My WordPress site has been hackedI get a MDAC injection warning from AVG upon visiting your site. If FMacastro’s solution doesn’t work, try uploading a fresh copy of a theme and activate it. If the problem persists then at least you will know it isn’t due to code inserted in your theme’s files.
Forum: Fixing WordPress
In reply to: How to keep search query in the search bar?It sure does, that you so much t310s_ your solutions have helped me a lot over the past few weeks!
Forum: Fixing WordPress
In reply to: How to keep search query in the search bar?Thank you t31os_, that solution almost works. Currently I have:
value="Search Posts, Tags and Categories"Although your code:
value="<?php the_search_query(); ?>"keeps the search query in the search field it also gets rid of “Search Posts, Tags and Categories”.
I wanted that to be in the search field at first and only after the user enters the new search I wanted it to display the search query. Is that possible?
Forum: Fixing WordPress
In reply to: How to display the tag cloud in list formatThe built-in tag cloud list does not have the ability to order based on the popularity of the posts
Thanks mrmist for letting me know, guess I should look for a plugin that can do that.