hedonplay
Forum Replies Created
-
please think about the gd library problem.
http://www.hui-wang.info/2009/07/gd-library-error-imagecreatetruecolor-does-not-exist/Forum: Fixing WordPress
In reply to: Delete link categoriesbe calm please.
could you just show us your site or an image of your problem in order to get it understood?Forum: Fixing WordPress
In reply to: Script For One Pagehello cableghost,
to achieve this, you have to an ‘or’ condition inside ‘if’thing goes as follows:
<?php if(is_home()||is_page(array(“please put your pages id here separated by comma”))) {} ?>
don’t hesitate to contact me if it doesn’t work.
Forum: Fixing WordPress
In reply to: Versions and updatesHello, i suppose you are talking about the version of wordpress. You can find the version in the ‘Right Now’ column in your dashboad. I think we could upgrade to the newest version directly.
Forum: Fixing WordPress
In reply to: Sidebar for specific pages?Yes, you’ve got it!
Forum: Plugins
In reply to: Can’t Upgrade Plugins via Dashboardsolution here works for me
http://www.hui-wang.info/2009/06/unable-to-locate-wordpress-content-directory-wp-content/
Forum: Plugins
In reply to: Upgrade Plugin: Unable to locate WordPress Content directory (wp-content).Here is the solution
for those who have changed the php.ini memory_limit, but it still doesn’t work, please think about to restart your web sever.
Forum: Fixing WordPress
In reply to: Sidebar for specific pages?Yes we can do it with the help of conditional tag.
For example you want to display sidebar “test” only in the category “test”,do this:
<?php
if(is_category(‘test’)){
//sidebar test here
}
?>Forum: Fixing WordPress
In reply to: Problem trying to install WordPress 2.8It means that your web sever can’t interpret the php file.
It’s the problem of server configuration.Forum: Fixing WordPress
In reply to: How to diagnose and fix a problem if cannot log-in?hello, if you can log in, what will you do?
Forum: Everything else WordPress
In reply to: GD Library Error: imagecreatetruecolor does not existhello there, here is the solution