Advertisement
Guest User

Untitled

a guest
Oct 30th, 2011
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. <?php // custom template for product single view
  2. get_header();
  3. ?>
  4. <!-- Being Left Column -->
  5. <div id="leftcolumn">
  6.  
  7.  
  8. <!-- Begin Artist Info -->
  9.  
  10. <div id="artistinfo">
  11. <div class="tophat">
  12. <p class="featuredtitle">artist info</p>
  13. </div>
  14.  
  15. <div id="info">
  16. <ul>
  17. <li>
  18. <h3><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></h1>
  19. <?php echo framemarket_product_meta(); ?>
  20. </li>
  21. <li id="favoriteblock">
  22. <!--<img src="http://periscopechicago.com/wp-content/uploads/2011/09/productview_heart.jpg" />-->
  23. <h3 id="favoritetext">send message<h1>
  24. </li>
  25. <li>
  26. <img src="http://periscopechicago.com/wp-content/uploads/2011/09/backtogallery.png" />
  27. </li>
  28. </ul>
  29. </div>
  30.  
  31. </div>
  32. <!-- End Artist info -->
  33.  
  34. <!-- Begin Product Images -->
  35. <div id="mainproduct">
  36.  
  37.  
  38. <?php echo do_shortcode('[photospace]'); ?>
  39.  
  40. <div class="tophat">
  41. <ul id="share">
  42. <li><p class="featuredtitle">share : </p></li>
  43. <li id="twitter"><a href="https://twitter.com/share" class="twitter-share-button" data-text="Chicago find :" data-count="none" data-via="periscopchicago">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li>
  44. </ul>
  45. </div>
  46.  
  47. </div>
  48. <div id="otherworks">
  49. <div class="tophat">
  50. <p class="featuredtitle">other works in this shop</p>
  51. </div>
  52.  
  53.  
  54.  
  55. <?php// echo do_shortcode('[mp_list_products page="0" per_page="4" show_price="0" text="none"]');
  56. ?>
  57. <?php mp_list_products();
  58. $content = '<div id="mp_product_list">';
  59. ?>
  60.  
  61. <div class="clear"></div>
  62.  
  63. <!--<h1 class="post-title"><?php// _e( 'Our products', TEMPLATE_DOMAIN ) ?></h1>-->
  64.  
  65. <img id="morebtn" src="http://periscopechicago.com/wp-content/uploads/2011/08/more_btn.jpg" />
  66.  
  67.  
  68. </div>
  69. <div id="productcomments">
  70. <?php comments_template( '', true ); ?>
  71. </div>
  72. </div>
  73. <!-- End left -->
  74.  
  75. <!-- Begin Right Column -->
  76. <div id="rightcolumn">
  77.  
  78. <!-- Begin About Work -->
  79. <div id="aboutthework">
  80.  
  81. <div class="tophat">
  82. <p class="featuredtitle">about the work</p>
  83. </div>
  84.  
  85. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  86. <h3 class="featuredtext"><?php the_title(); ?></h3>
  87. <!--<div class="product-photo"><?php// mp_product_image(true, 'single', null); ?></div>-->
  88. <div class="product-details">
  89. <div class="content-box">
  90. <?php the_content(); ?>
  91.  
  92. </div>
  93. <?php echo framemarket_product_meta(); ?>
  94. <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
  95. <?php edit_post_link(); ?>
  96. </div>
  97. <?php endwhile; else: ?>
  98. <p><?php _e( 'Sorry, no posts matched your criteria.', TEMPLATE_DOMAIN ) ?></p>
  99. <?php endif; ?>
  100.  
  101.  
  102. </div>
  103.  
  104.  
  105. <!-- end about work-->
  106.  
  107.  
  108. </div>
  109.  
  110.  
  111. <!-- End of Right Column -->
  112.  
  113. <!-- Begin Ad Column -->
  114. <div id="adcolumn">
  115. <div class="tophat">
  116. <p class="featuredtitle">sponsors</p>
  117. </div>
  118. <div id="sponsor">
  119. <p> this is an ad yo. </p>
  120. </div>
  121.  
  122. </div>
  123. <!--End Ad Column -->
  124.  
  125.  
  126. <?php //get_sidebar(); ?>
  127. <?php get_footer() ?>
  128.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement