Equal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: White Screen (of death) after uploadin own theme!?There is clearly a problem with your theme. You need to take a look at that in order to fix the problem.
Often white screens are a functions.php problem, perhaps whitespace after the closing ?> tag.
Forum: Themes and Templates
In reply to: Can't use the_title in a custom query?the_title function outputs the title (like echo’s it) where get_the_title doesn’t.
Forum: Fixing WordPress
In reply to: Accessing Form DataI am not familiar with Contact Form 7 but I guess that it may store its entries in the WordPress database somewhere.
Take a look in phpmyadmin and see it is has its own tables.
Perhaps this may help:
http://ww.wp.xz.cn/support/topic/upgrade-to-30-fails?replies=40#post-1556093
Forum: Fixing WordPress
In reply to: Permalink option gone when starting new postIt only appears (I think) once you have added a title and start writing your page with the first autosave.
Forum: Fixing WordPress
In reply to: or dissapeare when editing, cannot create spaceThat will probably work but is using inline CSS style which is not recommended. Also you will have to do this on every post/page you do.
Adding things to your style.css file will do it for all those images site-wide.
Forum: Fixing WordPress
In reply to: Accessing Form DataAre you using a plugin to create the form?
Forum: Fixing WordPress
In reply to: or dissapeare when editing, cannot create spaceYour best bet here is to use CSS. Your theme will have a CSS file called style.css and you can amend the styles for images in here.
Look for the following CSS rules:
.alignright .alignleftYou can then add right/left and top/bottom margins to them in order to move text away from your images.
Forum: Fixing WordPress
In reply to: How To Configure WP-SNAP!category.phpIs there an index.php file?
Also you need to replace ‘yourthemename’ with the name of the folder that your theme is using.
Forum: Fixing WordPress
In reply to: How To Configure WP-SNAP!category.phpcategory.php is one of the files that make up your theme which is being used on your WordPress site.
The files are located in the following location from the root of your WordPress installation:
wp-content/themes/yourthemename/
Forum: Fixing WordPress
In reply to: Page attributesIf your menu in your theme uses
wp_list_pagesthen you can make use of the exclude parameter in order toexcludepages or alternatively you could make use of theincludeparameter which means you state the pages you want in the menu and new top level pages won’t appear there.If you theme uses the new WordPress menu system you should be able to edit the menu from ‘Appearance’ > ‘Menus’ in the WordPress admin. Try removing the “Automatically add top level pages’ option.
Forum: Themes and Templates
In reply to: Managing albums and songs in WordPressI think I would create a category called albums and then have posts for each album. To achieve the extra information such as lyrics and music player you could use custom fields on the post.
The image of the album cover could be done with WordPress “Featured Image” (Post thumbnails) feature, track list could be placed in the content of the post as well as the lyrics for the song.
The music player file could be added as a custom field and then loaded in your theme with get_post_meta() function.
I am sure there are lots of ways of going about this but this is my initial ideas.
Forum: Fixing WordPress
In reply to: How to nest multiple conditional tags?I would start by looking at the WordPress Codex Conditional Tags page:
Forum: Fixing WordPress
In reply to: Can only get wp to load if I include www.If you want your domain to be available at either http://www.domain.com or domain.com then you will need to add a DNS record to make this happen. Your host should help you with this.
Forum: Requests and Feedback
In reply to: What Should 2011 Hold for WordPress?I would like to see some sort of meta box system for custom fields. Perhaps that can be defined similar to custom post types and custom taxonomies. This would help making WordPress into a great CMS.