Posts: 280
Name: Randy
Location: Northern Wisconsin
|
Q1: I think I saw something about that being fixed in 2.8.3? Not sure.
Q2: If you implement a lightbox, then, since the pop up will only show on the current page, I assume you will need to allow the user to ultimately click on that pop-up image to go to the post page for that product, correct?
http://visuallightbox.com/index.html?affiliateid=17894 Allows a link to be placed in the image. This can be the link to the actual product post page.
If you want the product to follow the page template then one way would be to add a conditional statement on your single.php file. This is because Posts do not allow you to choose a template(as I am sure you know) but you can use:
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if (is_category('Category A')) { ?>
now put the alternate code that makes the product page look like the Page template
(Obviously, Category A would be your Product category)
<?php } ?>
(this section would revert to the regular single template)
Or, you can simply copy a majority of the code for page.php to single.php if you want ALL posts to follow the page template.
This suggestion is probably only useful if you are ok with digging into the code, of course.
You can also try this: http://www.nathanrice.net/blog/wordp...ost-templates/, I have never used it though, can't comment.
Quote:
|
as their forums are worthless
|
Couldn't agree more.
More help:
http://codex.wordpress.org/Category_Templates
|