Arnold Goodway
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WP Bug recognizing page.php templates/loading content?The standard page.php will not appear in the template drop down. WordPress will read your page.php if it exists. If there is no such file and the default theme is loaded WordPress will use the page.php from that theme. If you want to make special changes to your about page you will have to create a page template but you will have to name it anything but page.php. If you for example, name it about.php you will find it in the template dropdown.
Your code looks okay to me, I just cannot see why you are placing the title in a table and the content outside the table.
Forum: Fixing WordPress
In reply to: Can’t publish new static pages only postsI am assuming you are expecting a link to appear to the new page in a menu somewhere. It is not necessarily true that your theme will automatically pick up a new page and add it to the menu. A URL or even the name of the theme you are using would be useful to determine what is actually happening.
Forum: Themes and Templates
In reply to: new background color for blockquotesForum: Themes and Templates
In reply to: 100% HeightThe following should work:
Remove the styling you posted above.
Add a wrapper in which you will place the content, sidebar and footer divs.
Add overflow:hidden to the wrapper div.
Float the content div to the left.
Float the sidebar div to the right.
You may want the two items above on the opposite sides.
Add clear:both to the footer div.Forum: Fixing WordPress
In reply to: how to upload new files to fix a problemYou will need to find yourself a free FTP application. There are quite a few about (Google free FTP). You will require the connection details which your hosting company would have provided when you signed up for your hosting.
Forum: Fixing WordPress
In reply to: Search Template<?php single_cat_title(); ?>
This should do it with regards to the categories.
Forum: Fixing WordPress
In reply to: How to prevent authors from edit/delete others commentsThis plugin could possibly solve your problem.
Forum: Your WordPress
In reply to: New design with new focusI notice you do not date the tutorials shown on your site. WordPress continually brings out new versions and any WordPress tutorial without a date (or at least a version number) on it can be confusing and indeed irrelevant at times.
Forum: Fixing WordPress
In reply to: Extra Pages For Categories Not Working – Is Theme Faulty?URL please.
Forum: Fixing WordPress
In reply to: wp_register, how do I change the Text LinkChanging the core files is not the answer as you will have to continually make these changes as the new versions of WordPress appear.
I wanted to change just the ‘Register’ link on my site to “Register and Post’. I added the following to my theme’s functions.php file:
add_action( 'register' , 'register_replacement' ); function register_replacement( $link ){ if ( ! is_user_logged_in() ) { if ( get_option('users_can_register') ) $link = '
- ' . __('Register and Post') . ' '; else $link = ''; } else { $link = '
- ' . __('Site Admin') . ' '; } return $link; }
You could easily stick your changes to the Site Admin link in here as well. Hope this helps.
Forum: Everything else WordPress
In reply to: removing category-uncategorizedIf any other category is made the default post category in Settings, Writing, you will be able to delete the ‘Uncategorized’ category.
All posts to which you have not added a category will end up under whatever category you made the default.
Forum: Your WordPress
In reply to: Review PleaseI have just changed themes and I am now using the P2 theme. A review is thus no longer necessary as the design is now no longer my own. Thanks.
Forum: Themes and Templates
In reply to: Adding clear:both within content DivTried taking a look but your URL goes nowhere.
Forum: Your WordPress
In reply to: How’s this for a non-blog looking WordPress powered site?Great job, this is really well done.
Forum: Fixing WordPress
In reply to: blank page after adding a plug inThe easiest would be to use your ftp software. You will have to go to the directory wp-content/plugins/. Once there you should look for the plugin you added, hopefully you will recognize the name when you see it. Delete the plugin and you should be able to get back into your site.