vengeancefury
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images appearing in Firefox but not IEI’m having the same exact problem but just referring to a fully displayed image. I can’t figure it out.
The site I’m working on is: http://littlebearvillage.comThe image is:
http://www.littlebearvillage.com/wp-content/uploads/2009/02/partywithjohnposter_little_bear_golf-copy.jpgForum: Themes and Templates
In reply to: Display posts from selected categories in a pageI’m looking at displaying posts from a category in a page. (The rest of my pages need to remain as pages). Is what you are doing here doing just that? What other code/modifications do you have to your theme to enable it to work and where are you placing the code you have provided above?
Thanks in advance for any help.
Forum: Fixing WordPress
In reply to: Category display in a pageI have a similar problem, where on my website I have some pages that would work being displayed as categories and one page that needs to be displayed as a page. I would really like to make it have all navigation as pages…but have most of the pages display categories. My website is my portfolio (www.jimpickettdesign.com). Here is how I would like it all set up:
3-D = List articles in this category (and possibly display a gallery on the page as well
2-D = List articles in this category (and possibly display a gallery on the page as well
Design = List articles in this category (and possibly display a gallery on the page as well
Misc. = List articles in this category (and possibly display a gallery on the page as well
Photography = Display gallery
I’ve found a few different solutions and none of them are working. My guess is they are not working because of the theme I am using (Options theme : http://themehybrid.com/themes/options)
Some of the solutions were plugins like “Category Page” (http://pixline.net/wordpress-plugins/category-page-wordpress-plugin/en/)
or
Sobek’s posts in category plugin: http://wordpress.org/extend/plugins/sobeks-post-in-category/Does anyone have any advice for this?
note: I’m using the Multi-level navigation plugin (awesome plugin for drop down menus and other menu/navigation customization)
I had thought about making a custom navigation through this plugin where it would list the category pages and then my photography page.__________________________________
EDIT:
I found another way that might work: http://tpvswp.wordpress.com/2008/08/28/how-to-make-category-tabs-in-wordpresscom/ <<>> this works, and you do not need to have the page be 2 words as the article mentions. Mine works fine without 2 words.This is also a plugin that might work too: http://scott.yang.id.au/code/permalink-redirect/ <<>> I havnt tested this one yet, but it does not seem to apply to what we want to do by its description.
I found this that might help too (I havnt tested it): http://wordpress.org/support/topic/227758?replies=4
Forum: Plugins
In reply to: Display widget on certain pagesthank you greatly…the parenthesis worked! p.s. sorry for posting another topic…i thought no one would see my new post in this thread.
Forum: Plugins
In reply to: Display widget on certain pagesi’d like to jump in on this conversation…. I need some help with conditional statements: I am trying to make a widget display only on 3 specific pages….and I am not sure how to do this. I’ve tried this:
if (is_home()) {} elseif (is_page('3')) {} elseif (is_page('49')) {}
I’ve also tried this:
is_page('3''49')
and this:
is_page('3') or is_page('49') or is_home()
and this:
is_page('3') || is_page('49') || is_home()
I’m pretty new to php…I’m learning through tweaking the given code within wordpress docs.
Thanks for any help anyone gives.Forum: Fixing WordPress
In reply to: Header Image HotspotsYes that worked, Thank you very much!
tho one tweak was made from your code which was to take out the first
src="so it reads:
<img border="0" <img src="<?php bloginfo('template_directory'); ?>/images/banner.jpg" width="950" height="245" usemap="#FPMap0">Forum: Themes and Templates
In reply to: listing only sub-pages in sidebartry this widget in your side bar http://wordpress.org/extend/plugins/subpages-widget/ …. it works great.
Forum: Fixing WordPress
In reply to: Server- or Client-Side Image MappingI’m Looking to try to do the same thing to have an image with hotspots for the header. I have been trying to edit index.php and header.php and have gotten the hotspots to display…but the image won’t show up. If I find out how to do it I’ll come back to post.