I cannot find a plugin or an answer to what I am looking for and I am getting very frustrated :( I feel like this should be so simple.
Let me try another explanation
Right now I have a page this page, which I call the product category page
<?php
$pages = get_pages('child_of='.$post->ID.'&sort_column=post_date&sort_order=desc');
$count = 0;
foreach($pages as $page)
{
$content = $page->post_content;
?>
<div class="category-listing">
<table>
<tr>
<td>
<a href="<?php echo get_page_link($page->ID) ?>"><?php echo $content ?>
</td>
<td>
<h4><?php echo $page->post_title ?></h4>
<p><?php echo get_post_meta($page->ID,'product_number',true); ?><br />
<strong>List Price:</strong><?php echo get_post_meta($page->ID,'list_price',true); ?><br />
<strong>Our Price:</strong><?php echo get_post_meta($page->ID,'discount_price',true); ?></p>
<p><a href="<?php echo get_page_link($page->ID) ?>">More Information</a></p>
</td>
</tr>
</table>
And here is an example of this page
HERE
As you can see, these products are located in the Electronics category.
Electronics is the Parent page, and all of these product pages that are listed are the child pages.
I basically want to make a completely separate page with ALL the products in all categories. Every product is given the template "Product" or "product.php"
That is why I wanted to list only the pages with the same template.
There has to be an easy way to do this. I am ripping my hair out trying to figure this out. If anyone has any input, please help!
THANKS! I am extremely grateful for ALL input!