designophobia
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ColorWay] HTML in Feature DescriptionWhere?
Forum: Plugins
In reply to: [Contact Form 7 Modules] Hidden Fields Not Displaying Contant in EmailsI’m having the same problem. I’m using WordPress multisite v3.4.2 and Contact Form 7 v3.3.1 and Contact Form 7 Modules: Hidden Fields v1.2.3. My emails come in like:
From: Name
Email: [email protected]
Subject: post_title
Custom Field 1: custom_field-custom_field_1
Message: testAny thoughts?
OK, the comment form is displaying now. Is commenting only allowed on the gallery and not the individual pictures?
I still can’t get the comment form to show after updating to Version 0.1.2.
Found the answer I needed from NativePaul on this post. It fixed my display issue.
Is the custumization of the nggallery folder necessary or optional? I thought it was optional so I skipped it.
OK, when I hit compatibility view in IE8, it diplays properly.
I’m having the same problem. I have a customized version of the Twenty Eleven theme. The thumbnails are 15px wide and they are supposed to be 175px wide. This problem only shows up on IE8. It displays properly on Firefox and IE9. When I change themes to Twenty Ten, everything displays properly.
Anyone know why? My guess is javascript conflict, but where?
Forum: Themes and Templates
In reply to: Custom post type tags/categories archive pageI think I found the solution. I Googled “pre_get_posts register_nav_menus” and one of the results was this.
So I added the nav_menu_item to the post_type array like this:
add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_category() || is_tag()) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $post_type = array('post','articles','nav_menu_item'); $query->set('post_type',$post_type); return $query; } }
This appears to fix the problem. The custom nav is now showing up on the tag and category pages.
Is this the proper way to fix it or is there a better way?
Forum: Themes and Templates
In reply to: Custom post type tags/categories archive pageThanks for the help.
When WP E-Commerce plugin is activated I get alot of errors. When it is deactivated, not one error. It does not change the nav display.
Any other suggestions?
Forum: Themes and Templates
In reply to: Custom post type tags/categories archive pageI’m having the same problem that “ecken” described. When using this code, my custom menu in the primary navigation block disappears.
Anyone have a workaround?
Forum: Themes and Templates
In reply to: WP Nav Menu Dissapears in Category Pages!Well I found my problem, but fixing it causes another problem.
I have a custom post type named “articles” to separate them from the pages and posts. They were not showing up in the category or tag pages. To fix this, I inserted the following code in the functions file:
add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_category() || is_tag()) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $post_type = array('post','articles'); $query->set('post_type',$post_type); return $query; } }
Adding this code allows the custom post types to show up in the tag and category pages, but it makes the custom menu dissappear. Is there any way to rewrite the above code so that everything works like I need it to?
Forum: Themes and Templates
In reply to: WP Nav Menu Dissapears in Category Pages!I’m having the same problem. Here’s my setup:
I’m using a hacked version of Twenty Ten theme. I have one custom menu that I’m using for the primary menu. It displays properly on all the pages and posts including the home page. The menu block is empty on all archive pages including tag and category pages. When I change the Primary Navigation to the default menu in the Theme Locations box, the default menu displays properly site wide. I have even deactivated and reactivated my plugins to no avail.
Please help! I’m lost.
Forum: Plugins
In reply to: Random posts Without repeating themI also need a fix for the repeating posts. Any solutions yet?
How would you do this with a custom taxonomy?
I currently have:
<?php wp_tag_cloud( array( 'taxonomy' => 'people', 'number' => 0 ) ); ?>
but I want to display it on a page with 3 or 4 columns.