
08-31-2012, 06:04 PM
|
 |
Junior Member
|
|
Join Date: Aug 2012
Posts: 9
|
|
OK so here is the code to the template...
PHP Code:
<?php if($_GET['ajaxRequest']!=true){get_header();} ?>
<div id="content" class="grid_8 alpha omega <?php echo of_get_option('blog_sidebar_pos') ?>">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('page'); ?>>
<article class="post-holder">
<h1><?php the_title(); ?></h1>
<?php if(has_post_thumbnail()) {
echo '<a href="'; the_permalink(); echo '">';
echo '<figure class="featured-thumbnail"><span class="img-wrap">'; the_post_thumbnail(); echo '</span></figure>';
echo '</a>';
}
?>
<div id="page-content">
<?php the_content(); ?>
<div class="pagination">
<?php wp_link_pages('before=<div class="pagination">&after=</div>'); ?>
</div><!--.pagination-->
</div><!--#pageContent -->
</article>
</div><!--#post-# .post-->
<?php endwhile; ?>
</div><!--#content-->
<?php //get_sidebar(); ?>
I have made a blank template and was able to get the ecwid store working but it has no formatting at all. I would really like to get my ecwid store to work with this template if possible. I am hoping I do not need to pay someone to make this work but I am willing if there is no other way
Here is the blank template I made with my ecwid store in it...
PHP Code:
<?php
/*
Template Name: Store
*/
?>
<div> <script type="text/javascript" src="http://app.ecwid.com/script.js?1496030"></script> <script type="text/javascript"> xProductBrowser("categoriesPerRow=3","views=grid(3,3) list(10) table(20)","categoryView=grid","searchView=list","style="); </script> <noscript>Your browser does not support JavaScript. Please proceed to <a href="http://app.ecwid.com/jsp/1496030/catalog">HTML version of RUKUS 'n Rods</a></noscript> </div>
I appreciate any assistance on this
Thanks
|