MichaelH
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Yoko] Category template issueIn that theme’s (yoko) content.php file, around line 47 change
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
to<?php if ( is_search() ) : // Only display excerpts for search. ?>Of course this will cause the full post for ALL archives (e.g. date or tag) to display.
Forum: Plugins
In reply to: I need to add a lot of php into a few pagesWell you could put the code in a template…see Template_Hierarchy and Stepping into Templates
Forum: Fixing WordPress
In reply to: FireFox warning – how to get rid of it?Just in case you come back here see
http://wordpress.org/support/topic/how-to-remove-browse-happy-widget-from-wp-32-dashboard?replies=1Forum: Themes and Templates
In reply to: sub set of custom taxonomiesUse the Taxonomy Parameters of WP_Query with the
post_type= your custom post typeForum: Fixing WordPress
In reply to: Seperating Articles from PostsWhy not use categories (or even tags) for that and use the Category Widget to provide access to the articles.
If not the consider something like:
http://wordpress.org/extend/plugins/list-category-posts/
http://wordpress.org/extend/plugins/postlists/Forum: Networking WordPress
In reply to: All IDs Incrementing By 10 Instead of 1Maybe your auto_increment_increment MySql system value…
Forum: Fixing WordPress
In reply to: Posting on static pages?Look at Page Templates in the article Pages
Forum: Fixing WordPress
In reply to: adding fields to the registration pageForum: Fixing WordPress
In reply to: query posts function breaking archive categoriesLook at using
<? query_posts($query_string . '&posts_per_pate=30'); ?>See:
http://codex.wordpress.org/Function_Reference/query_posts#Usage_Note
http://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters[edit fixed code]
Forum: Fixing WordPress
In reply to: 3.2 widgets do not open (screen recording included)In Appearance->Widgets under Screen options, try the Enable Accessibility Mode.
Might also try deactivating plugins to see if one is causing a conflict.
Forum: Fixing WordPress
In reply to: How does WP handle multiple admins editing simultaneously?WordPress will tell you if another user is editing a post and will allow you to edit the post but warn you with a message such as “Jane is currently editing this article. If you update it, you will overwrite the changes.” when you go to save the post.
Forum: Fixing WordPress
In reply to: WordPress Admin Site is not loadingProbably should check with your host to see if there’s problems with the server. If that’s not possible, make sure you ‘execute’ something simple like the phpinfo script described in Finding_Server_Info.
Forum: Fixing WordPress
In reply to: Would like to put content where category list isYou could modify your theme files, but it might just be easier to use one or more text widgets to do that.
See Administration > Appearance > Widgets
Forum: Requests and Feedback
In reply to: Button New Post deleted from dashboardNo you aren’t missing anything, but give this a read:
http://wordpress.org/support/topic/troubleshooting-wordpress-32-master-list?replies=7#post-2200840Forum: Fixing WordPress
In reply to: Change order of Admin panels?See if this works for you:
http://wordpress.org/extend/plugins/admin-menu-editor/