jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot uncheck category in postIf you’re using WP 3.0 or newer you can create a custom menu at /wp-admin/nav-menus.php.
If not, you can change your theme’s header.php file (line 98) and function.php file (line 1056) from:
wp_list_categories('title_li='); and wp_list_categories('title_li=&depth=1&number=5');to
wp_list_categories('exclude=7&title_li='); and wp_list_categories('exclude=7&title_li=&depth=1&number=5');The
exclude=7bit will exclude category id 7 (Default in your case) from being displayed.so where it says 'Name' here will still be interpretted as 'Key' by the code?— Yes
Forum: Fixing WordPress
In reply to: ExpandingW3 Super Cache should be converting most of your site into html and caching it so messing with footer.php or whitespace probably won’t have a noticeable effect.
What kind of hosting plan to you have?
I don’t exactly understand what the issue you’re facing is.
WP custom field data is (usually) returned as an array…using “Key” and “Value” are just naming conventions. Your particular theme may use “Name” instead of “Key.”
Can you post a screenshot of the issue you’re seeing?
Forum: Fixing WordPress
In reply to: Updating a PDF file on a pagecan you post the URL of the page you’re having trouble with and where the pdf (link?) is on that page?
Forum: Fixing WordPress
In reply to: Cannot uncheck category in postDid you rename the ‘Uncategorized’ category to ‘Jokes’? Is it set as your default category(/wp-admin/options-writing.php)?
If yes, then I’m pretty sure that you’ll need to create a new default category since WP requires each post to have at least one category.
Forum: Fixing WordPress
In reply to: 1 BLOG > MULTIPLE DATABASESWould removing revisions be a possibility?— See http://lesterchan.net/wordpress/2008/07/17/how-to-turn-off-post-revision-in-wordpress-26/ for more information about removing revisions from your database
Forum: Fixing WordPress
In reply to: 1 BLOG > MULTIPLE DATABASESalmost... 57MB— Just curious, but how many posts & pages do you have?
— Would removing revisions be a possibility?
I 'd like to create multiple databases for one blog. how can I do this?— you’d need to hook into the wpdb class
Forum: Fixing WordPress
In reply to: WordPress multisite sub domain not workingAnd jkovis' link misses a "k" of course— good catch…just fixed it
Forum: Fixing WordPress
In reply to: blocking content for a certain pageIs the is_page() php fuction able to tell a single page not to show this drop field without having to do "is_page('42, 45, 45,........')— I don’t entirely understand what you’re asking, but is_page() will return true on individual WordPress pages (anything under wp-admin/edit.php?post_type=page). See http://codex.wordpress.org/Conditional_Tags#A_PAGE_Page for your options requiring finer grain control
Forum: Fixing WordPress
In reply to: Comments textarea not visibleNot sure why your edit hasn’t worked. A temporary solution could be to change line 58 of your themes style.css file to read:
input, textarea { color:#585858; font:11px Tahoma,Geneva,sans-serif; margin:2px; padding:4px; visibility:visible !important; }Forum: Fixing WordPress
In reply to: 1 BLOG > MULTIPLE DATABASESMy database could not support more than 60MB— are you hitting this size limit already?
Forum: Fixing WordPress
In reply to: WordPress multisite sub domain not workingThe web hosting site where i hosted wordpress site offered only one sub domainBased on your description I would guess enabling multisite is not possible. Can you edit your server’s httpd.conf file?
Have you followed the steps at http://codex.wordpress.org/Create_A_Network/ ?
Forum: Fixing WordPress
In reply to: How to add sub-pagesIt looks like they just released a new version with subpage support.
Update your theme to the newest version – http://www.efrogthemes.com/demo/?theme=greyzed
Forum: Fixing WordPress
In reply to: how to change links in the themego into your theme’s header.php file and change:
<a id="headerRSS" href="<?php bloginfo('rss2_url');?>">to
<a id="headerRSS" href="http://feeds.feedburner.com/RunGreenPower">