Question about wootheme integration
-
Ok so I am using the chameleon theme from Elegant Themes, and I am having a bit of trouble integrating Woocommmerce into this theme.
What I have done so far is:
I went to this page and followed the instructions replacing the loop. and my code now looks like this:
<?php get_header(); ?> <?php get_template_part('includes/breadcrumbs'); ?> <?php get_template_part('includes/top_info'); ?> <div id="content" class="clearfix"> <div id="left-area"> <?php woocommerce_content(); ?> <div class="entry post clearfix"> <?php if (get_option('chameleon_page_thumbnails') == 'on') { ?> <?php $thumb = ''; $width = 186; $height = 186; $classtext = 'post-thumb'; $titletext = get_the_title(); $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext,false,'Entry'); $thumb = $thumbnail["thumb"]; ?> <?php if($thumb <> '') { ?> <div class="post-thumbnail"> <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?> <span class="post-overlay"></span> </div> <!-- end .post-thumbnail --> <?php } ?> <?php } ?> <?php the_content(); ?> <?php wp_link_pages(array('before' => '<p><strong>'.esc_html__('Pages','Chameleon').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> <?php edit_post_link(esc_html__('Edit this page','Chameleon')); ?> </div> <!-- end .entry --> <?php if (get_option('chameleon_show_pagescomments') == 'on') comments_template('', true); ?> <?php woocommerce_content(); ?> </div> <!-- end #left-area --> <?php get_sidebar(); ?> </div> <!-- end #content --> <?php get_footer(); ?>
[Moderator Note: Please post code or markup between backticks or use the code button. Or better still – use a pastebin. Your posted code may now have been permanently damaged by the forum’s parser.]
The problem I am having now, is that the products duplicate themselves and I don’t have a clue of why this is happening, and my website is here
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Question about wootheme integration’ is closed to new replies.