Guest User

Untitled

a guest
Feb 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <?php do_action('woocommerce_showproduct_newlabel'); ?>
  2.  
  3. <div class="actions">
  4. <?php if ($inwave_theme_option['woocommerce_quickview']): ?>
  5. <a href="#<?php echo esc_attr(get_the_ID()); ?>" class="arrows quickview">
  6. <i class="fa fa-arrows-alt"></i>
  7. <input type="hidden" value="<?php echo esc_attr($inwave_theme_option['woocommerce_quickview_effect']); ?>" />
  8. </a>
  9. <?php endif; ?>
  10.  
  11. <?php if (class_exists('YITH_WCWL')): ?>
  12. <a href="<?php echo esc_url(YITH_WCWL()->get_addtowishlist_url()); ?>" rel="nofollow"
  13. data-product-id="<?php echo esc_attr($product->id) ?>"
  14. data-product-type="<?php echo esc_attr($product->product_type); ?>" class="link-wishlist add_to_wishlist">
  15. <i class="fa fa-heart"></i>
  16. </a>
  17. <?php endif; ?>
  18.  
  19. <a class="add_to_cart_button product_type_simple ajax_add_to_cart" data-product_id="<?php echo esc_attr($product->id) ?>" data-product_sku="<?php echo esc_attr($product->get_sku()) ?>" href="<?php echo esc_url($product->add_to_cart_url())?>" data-quantity="1"><i class="fa fa-shopping-cart"></i></a>
  20.  
  21. </div>
  22. </div>
  23. <div class="info-products">
  24.  
  25. <div class="price-box">
  26. <div class="price-box-inner">
  27. <?php echo wp_kses_post($product->get_price_html()); ?>
  28. </div>
  29. </div>
  30. <div class="product-name">
  31. <a href="<?php echo esc_url(get_the_permalink()); ?>"><?php the_title(); ?></a>
  32.  
  33. </div>
  34. <?php echo wp_kses_post($product->get_categories(', ', '<div class="cat-list">' . _n('', '', $cat_count, 'inevent'), '</div>')); ?>
  35. </div>
  36. </div>
  37.  
  38. </div>
Add Comment
Please, Sign In to add comment