stanzl
Forum Replies Created
-
Forum: Plugins
In reply to: Readme.txt with flaws?I was too quick in bothering you, emtying my cache did the trick.
Forum: Requests and Feedback
In reply to: What Should 2011 Hold for WordPress?I’d love to see WP in OOP!
I know this is a lot of work, there’ll be compatibility issues with Plugins ans Themes, but think of all the great possibilities with oo code in place (not to mention grandchild-, great-grandchild-themes etc.)
You could skip a release cycle or two (or three), like you did for wordpress.org and REALLY be poetic! πP.S. Until you’re there: Core Plugins would be awesome!
Hey Jim,
go ahead and add this to the very top of your style.css:
@import "styles/nav.css";This should fix the nav problem.
As for your logo problem:
Could you post the code of your haeder.php file here?Forum: Themes and Templates
In reply to: Horizontal trouble w/ New 3.0 Custom MenusDude, really?
style.css, line 1027:
ul.menu li { background:url("images/div-h.png") repeat-x scroll left bottom transparent; display:block; padding:0 0 3px; width:100%; }Lose the width property!
Forum: Themes and Templates
In reply to: Can Custom post types have categories?Look what I found with some Google Magic:
http://www.deluxeblogtips.com/2010/07/custom-post-type-with-categories-post.html
Forum: Themes and Templates
In reply to: How to move widgets on sidebarIt appears that these widgets are hardcoded in your
sidebar.php. Just open the file and delete the corresponding code. Then you’ll be able to use widgets dynamically without redundancy.Quoting from the WordPress Codex:
Categories can be hierarchical in nature, where one category acts as a parent to several child, or grandchild, categories. Thoughtful categorization allows posts of similar content to be grouped, thereby aiding viewers in the navigation, and use of a site. In addition to categories, terms or keywords called tags can be assigned to each post. Tags act as another navigation tool, but are not hierarchical in nature. Both categories and tags part of a system called taxonomies.
Forum: Fixing WordPress
In reply to: Cannot access admin panel and some users cannot see the siteIt probably won’t fix the problem, but keeping your WordPress installation up to date never hurts. We’re way past v2.6.5 π
Forum: Fixing WordPress
In reply to: wp-includes/plugin.phpMabe you also want to
define('WP_DEBUG', true);in your wp-config.php to get more infosForum: Fixing WordPress
In reply to: Change page depending on whether user is logged inThese shortcode examples will do just that:
http://www.livexp.net/wordpress/using-wordpress-shortcodes-to-show-members-only-content.htmlForum: Plugins
In reply to: Menu at Post creat or Post editor pageForum: Fixing WordPress
In reply to: wp-includes/plugin.phpMy first guess would be a problem with the Event Calendar Plugin you’re using. Deactivating the plugin should do the trick.
Maybe you want to ask the plugin author what the problem might be..Forum: Plugins
In reply to: [Plugin: Yoast Breadcrumbs] Problem with accented letters in optionsThis is a problem within the plugin code, will say the setup of the options page. As you may notice the default
»does not break.A temporary solution would be to go into the “yoast-breadcrumbs.php” and alter the lines 103 and 108 by wrapping the
$optvariable intohtmlspecialchars().
But unless the developer changes that in the next upgrade, the manuall changes will be gone after the next upgrade -> temporaray solution π