• Paul

    (@rhododendron)


    Where will I find all the snippets of this Theme like which ever the standard requirements solutions are already provided.

    Please let me know.

    And I have another question. I want to design a woocommecerce cart inside this theme. How compatible is it in terms of that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Paul,

    I just installed a Woocommerce shop. The theme is compatible with Woocommerce, though you need to spend some time styling it to your requirements. I am sharing some steps to point you in the right direction.

    Install Woocommerce from the plugin repository
    Duplicate page.php and delete the loop. Replace it with woocommerce content.

    For example, the loop in page.php looks like this:

    <?php while ( have_posts() ): the_post(); ?>
    
    			<article <?php post_class('group'); ?>>
    
    				<?php get_template_part('inc/page-image'); ?>
    
    				<div class="entry themeform">
    					<?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?>
    					<?php the_content(); ?>
    					<div class="clear"></div>
    				</div><!--/.entry-->
    
    			</article>
    
    			<?php if ( ot_get_option('page-comments') == 'on' ) { comments_template('/comments.php',true); } ?>
    
    		<?php endwhile; ?>

    Once you replace the content, it should look like this:
    <?php woocommerce_content(); ?>

    Now you have a shopping system with your wordpress install.

    Note, however, that you need to customise your CSS and Woocommerce hooks to make the shop blend with the theme.

    Hope this helps.

    Best Regards,
    Mithun

    Thread Starter Paul

    (@rhododendron)

    @mithun

    That was really Nice! I appreciate your suggestion!

    I have a Question though.
    I’ll tell you my specific requirement. That will make things clear to you and you will be able to give your verdict on that.

    I want my Homepage like a bunch blogpost. as the theme shows. I want to place featured posts in a grid layout on my homepage. That is why I have chosen this theme primarily.

    Now the thing is the website will provide some services and goodies which requires a woo commerce shop. which will appear in one of the pages.

    Now Please tell me whether I can implement the aforesaid solution for my store page.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Where to find the Snippets’ is closed to new replies.