Equal Web Creative
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Automatic upgrading not workingHave you tried checking with your host? I have had this where one site on the same host works and the other doesn’t and it turns out that it was a server setting that they changed.
Forum: Plugins
In reply to: Hiding Cats and Tags?You could hide them with CSS. Find which CSS selectors they have (either a class or an ID usually) and then give that class/ID in your themes stylesheet
display: none;Forum: Themes and Templates
In reply to: Viewing Home PageWhat exactly are you trying to do here? You mention copying some folders but what are you trying to achieve. This will help when it comes to a diagnosis.
Forum: Themes and Templates
In reply to: wordpress 3 – custom menusAll you should need in your theme functions.php file is:
<?php function register_my_menu() { register_nav_menu( ); } ?>Forum: Fixing WordPress
In reply to: Facebooke Share and RetweetThis forum is for self hosted WordPress blogs. I would suggest using the forums over at http://wordpress.com
Forum: Installing WordPress
In reply to: WP 3.0 cannot migrate site from testing serverDid you find and replace in the database or the export file and replace the old URLs with the new ones before the move?
Also check Blog URL and WordPress URL are correct the in the wp_options database table (use PHPMyAdmin).
Forum: Installing WordPress
In reply to: Cannot Modify Header InformationNine and half times out of ten, every time I see that message (“cannot modify header information”) it is due to a problem with the active themes functions.php file.
Revert to the default theme and see if that works.
Forum: Themes and Templates
In reply to: no “see earlier posts” linkDoes your themes index.php file contain this template tag?
Forum: Fixing WordPress
In reply to: Edit Pictures Not Working on 3 of my blogsI would also try clearing the cache in your browser, clearing your cookies as well as trying it in a different up-to-date browser.
Forum: Fixing WordPress
In reply to: Calling plugin from functions.phpThe reason why it fails for plugins with multiple php files is because some of those other php files will be referencing each other from the plugins folder and they will not be present.
Have you thought about putting them in the mu-plugins folder? That way they will run automatically without the need for activation.
Forum: Fixing WordPress
In reply to: Table with recent postSounds like you want to set up a custom WP_Query to grab the posts and then display an image and perhaps the title.
Try looking here first:
Forum: Fixing WordPress
In reply to: Help.. have I screwed my blog totally?Login to PHP my admin and in the options table will be the blog URL and WordPress URL. Reset them back to where it was and it should then work.
Forum: Fixing WordPress
In reply to: Media upload failedHave you tried here:
Forum: Fixing WordPress
In reply to: How to: removing image from library erases it from server?It should delete the image from the server. Are you pressing the confirm when it asks are you sure?