denutza
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Can't change color of secondary menuActually I had tried that..my problem is I just don’t know how to apply it.
It shows
- #menu-primary .menu when I hover over the top menu.
It shows
- #menu-secondary. menu when i hover over secondary menu.
(Im a major CSS dummy)
Forum: Plugins
In reply to: Share And Follow removedBump, except new contact is:
support at INeedADietPlan dot com
Forum: Fixing WordPress
In reply to: Exclude specific category posts except for stickiesNo other loops or queries before this.
I would think that’s odd yours even showed the stickies, without additional code.
I was just going to post a similiar bug….Needless to say to fix it, just go to Permalinks and click update (assuming you already have strip category URL set)…You don’t have to uncheck it and check it back again.
Forum: Fixing WordPress
In reply to: Display Only TAGGED Post on Category pageFinally got it..Has to do with an old WP bug where the category name cannot be resolved outside main loop with query-posts.
<?php foreach(get_the_category() as $category) { $cat=$category->cat_ID; } query_posts("cat=$cat&tag=test"); ?>It has to be done this way..not sure why..they need to fix this by now.
Even if I had replaced cat=catid in 2nd post, instead of cat=categoryname it wouldnt work.Forum: Fixing WordPress
In reply to: Display Only TAGGED Post on Category pageI ALMOST got it..I have TAGS working, unfortunately it shows the post, even if the post doesnt belong in the category page that i’m on.
<?php $category = get_the_category(); ?> <?php query_posts('cat=$category&tag=test');?> <?php while ( have_posts() ) : the_post() ?>Why is this?
Forum: Fixing WordPress
In reply to: Change Blog Title in Post pages to Category nameyes, YourBlogTitle = CategoryName .
But only when reading individual post that is assigned a category.