File: /mnt/data/truelysell-wp-demo/wp-content/themes/truelysell/woocommerce/content-product.php
<?php
/**
* The template for displaying product content within loops
*
* This template can be overridden by copying it to yourtheme/woocommerce/content-product.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce/Templates
* @version 9.4.0
*/
defined( 'ABSPATH' ) || exit;
global $product;
// Ensure visibility.
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
// Extra post classes
$classes = array();
$single_buy_products = get_option('truelysell_buy_only_once');
$user = wp_get_current_user();
if($single_buy_products){
if ( is_user_logged_in() && in_array( $product->get_id(), $single_buy_products ) && wc_customer_bought_product( $user->user_email, $user->ID, $product->get_id() ) ) {
return;
}
}
if($product->is_featured()) {
$classes[] = "featured";
}
if($product->get_type() == "listing_package" ) {
$classes[] = "plan";
}
if($product->get_type() == "listing_package" ) { ?>
<li <?php post_class( $classes ); ?>>
<?php
if ( has_post_thumbnail() ) {
$attachment_count = count( $product->get_gallery_image_ids() );
$gallery = $attachment_count > 0 ? '[product-gallery]' : '';
$props = wc_get_product_attachment_props( get_post_thumbnail_id(), $post );
$image = get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ), array(
'title' => $props['title'],
'alt' => $props['alt'],
) );
echo apply_filters(
'woocommerce_single_product_image_html',
sprintf(
'%s',
$image
),
$post->ID
);
}
?>
<?php if( $product->is_featured() ) : ?>
<div class="listing-badge">
<span class="featured"><?php esc_html_e('Featured','truelysell'); ?></span>
</div>
<?php endif; ?>
<div class="plan-price">
<h3><?php the_title(); ?></h3>
<span class="value"> <?php echo wc_price($product->get_price()) ?></span>
<span class="period"><?php
echo wp_kses_post($product->get_short_description());
?></span>
</div>
<div class="plan-features">
<ul class="plan-features-auto-wc">
<?php
$propertieslimit = $product->get_limit();
if(!$propertieslimit){
echo "<li>";
esc_html_e('Unlimited number of listings','truelysell');
echo "</li>";
} else { ?>
<li>
<?php esc_html_e('This plan includes ','truelysell'); printf( _n( '%d listing', '%s listings', $propertieslimit, 'truelysell' ) . ' ', $propertieslimit ); ?>
</li>
<?php } ?>
<?php if( $product->get_duration() ) { ?>
<li>
<?php esc_html_e('Listings are visible ','truelysell'); printf( _n( 'for %s day', 'for %s days', $product->get_duration(), 'truelysell' ), $product->get_duration() ); ?>
</li>
<?php } ?>
</ul>
<?php
echo wp_kses_post($product->get_description());
$link = $product->add_to_cart_url();
$label = apply_filters( 'add_to_cart_text', esc_html__( 'Add to cart', 'truelysell' ) );
?>
<a href="<?php echo esc_url( $link ); ?>" class="button"><i class="fa fa-shopping-cart"></i> <?php echo esc_html($label); ?></a>
</div>
</li>
<?php
} // eof resume or job package
else {
$classes[] = 'regular-product'; ?>
<li <?php post_class( $classes ); ?>>
<div class="product_wrapper">
<?php do_action( 'woocommerce_before_shop_loop_item' ); ?>
<div class="mediaholder">
<?php
/**
* woocommerce_before_shop_loop_item_title hook
*
* @hooked woocommerce_show_product_loop_sale_flash - 10
* @hooked woocommerce_template_loop_product_thumbnail - 10
*/
do_action( 'woocommerce_before_shop_loop_item_title' ); ?>
<div class="grid_cart_button">
<?php
/**
* Hook: woocommerce_after_shop_loop_item.
*
* @hooked woocommerce_template_loop_product_link_close - 5
* @hooked woocommerce_template_loop_add_to_cart - 10
*/
do_action( 'woocommerce_after_shop_loop_item' );
?>
</div>
</div>
<section class="product-titleinfo">
<h5><a href="<?php echo get_permalink(get_the_ID()); ?>"><?php the_title(); ?></a></h5>
<?php
/**
* woocommerce_after_shop_loop_item_title hook
*
* @hooked woocommerce_template_loop_rating - 5
* @hooked woocommerce_template_loop_price - 10
*/
do_action( 'woocommerce_after_shop_loop_item_title' );
?>
</section>
<?php
/**
* woocommerce_after_shop_loop_item hook
*
* @hooked woocommerce_template_loop_add_to_cart - 10
*/
do_action( 'woocommerce_after_shop_loop_item' );
?>
</div>
</li>
<?php }