Hi
Thanks for getting back to me
I have found the paypal Unique Transaction ID2D209945AM2366641
is that ok?
Yes I was a bit worried at making the changes. I have found the page.php and located the code however as you can see its not the same way round as the one you put before:
<?php if (is_front_page()) {} else { ?>
...
<?php } ?>
This is the code from my page.php file
<?php get_header();
tfuse_slider_include();
if ( tfuse_shortcode_content('before', true ) )
{ ?>
<div class="before_content">
<div class="inner">
<div class="container_12">
<?php tfuse_shortcode_content('before'); ?>
</div>
</div>
</div>
<?php } ?>
<?php if (is_front_page()) {} else { ?>
<div <?php tfuse_middle_class(); ?>>
<div class="container_12">
<?php if ( tfuse_sidebar_position('left') )
{ ?>
<div class="grid_4 sidebar">
<?php get_sidebar(); ?>
</div><!--/ .grid_4 sidebar -->
<?php } ?>
<div class="<?php echo ( ! tfuse_sidebar_position('full') ) ? 'grid_8' : ''; ?> content">
<div class="entry">
<?php if (have_posts()) : $count = 0;
while (have_posts()) : the_post(); $count++; ?>
<?php tfuse_page_title(); ?>
<?php the_content(); ?>
<?php tfuse_comments();
endwhile; else:
_e('Sorry, no posts matched your criteria.', 'tfuse');
endif; ?>
</div><!--/ .entry -->
<?php tfuse_shortcode_content('after'); ?>
</div><!--/ .content -->
<?php if ( tfuse_sidebar_position('right') )
{ ?>
<div class="grid_4 sidebar">
<?php get_sidebar(); ?>
</div><!--/ .grid_4 sidebar -->
<?php } ?>
<div class="clear"></div>
</div><!--/ .container_12 -->
</div><!--/ .middle --><?php } ?>
<?php get_footer(); ?>
thanks for your help so far :)
Add Reply
You must log in to post.