I pretty much just want to remove the post metadata from the Gallery Posts.
Here is my index.php//
<?php get_header(); ?>
<div id="right-content">
<?php get_template_part( 'loop', get_post_format() ); ?>
</div>
<div id="left-content">
<div class="inner">
<?php get_sidebar(); ?>
</div>
</div>
Here is my single.php//
<?php get_header(); ?>
<div id="main-content">
<?php get_template_part( 'loop', 'single' ); ?>
</div>
<div class="clear"></div>
<?php get_footer(); ?>
What I don't understand is how to set up the loop or loop-single files in order to get separate templates for the standard and gallery single posts.
I have added a loop and loop-single.php file.
Here are pastebins of those files//
http://pastebin.com/9xSZKnJA - loop.php
http://pastebin.com/WiXwKf7d - loop-single.php
EDIT//
Here are the new "single-gallery.php" and "loop-gallery.php" files inside this pastebin// http://pastebin.com/YukyZ9hm