Forum Replies Created
-
AuthorPosts
-
dycrawMember
Hello,
First of all thanks for a great little plugin it is perfect for my needs. I have installed it and things are working fine so far. However I am having one issue. One I place the wp_cart tags directly in a post everything works fine, however when I place the code in to a template as follows this link is the end result http://dylanscott.net/colours4aura/?p=65
(<?php
/*
Template Name Posts: Colour Template
*/
?>
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<h2><?php the_title(); ?></h2>
<div class=”contenttext”>
<?php the_content(‘<p>Read more »</p>’); ?>
</div>
<p class=”contenttext”>
Available Samples:
16″ x 16″ handpainted artbord sample – $10.00 [wp_cart:DSC001.5 16×16:price:10.00:end]
250ml matte finish sample pot – $12.00 [wp_cart:DSC001.5 250ml :price:12.00:end]
</p>
<p class=”styleShipping”>Please note their is a flat rate shipping charge of $15 for up to 6 items to mainland North America. Please contact us directly regarding shipping costs to additional destinations, on larger orders or for express services.
</p>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
<p class=”postinfo”>Posted: <?php the_time(‘F jS, Y’) ?> under <?php the_category(‘, ‘) ?>.
<?php the_tags(‘Tags: ‘, ‘, ‘,”); ?><?php edit_post_link(‘[edit]’,’ | ‘,”); ?></p>’
<div class=”navigation”>
<p><span class=”prevlink”><?php previous_post_link(‘« %link’,’Previous post’,”); ?></span>
<span class=”nextlink”><?php next_post_link(‘%link »’,’Next post’,”); ?></span></p>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p>No matching entries found.</p>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>
<style type=”text/css”>
)
Any suggestion you have would be a great help. I’m a hack when it comes to these things so hopefully it won’t be to complicated of a work around.
-
AuthorPosts