HEX
Server: LiteSpeed
System: Linux standart108 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: pplae2ji7 (11089)
PHP: 8.3.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/plasmak.com.tr/httpdocs/wp-content/themes/buliten/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/
 * @author  WooThemes
 * @package WooCommerce/Templates
 * @version 3.6.0
 */

if (! defined('ABSPATH')) {
    exit; // Exit if accessed directly
}

global $product;

// Ensure visibility
if (empty($product) || ! $product->is_visible()) {
    return;
}
$options = _WSH()->option();
$meta = _WSH()->get_meta('_bunch_layout_settings', get_option('woocommerce_shop_page_id'));
$meta1 = _WSH()->get_meta('_bunch_header_settings', get_option('woocommerce_shop_page_id'));

$layout = buliten_set($meta, 'layout');
$layout = buliten_set($_GET, 'layout') ? $_GET['layout'] : $layout;
if (buliten_set($_GET, 'layout_style')) {
    $layout = buliten_set($_GET, 'layout_style');
} else {
    $layout = buliten_set($meta, 'layout');
}
$sidebar = buliten_set($meta, 'sidebar');

$layout = ($layout) ? $layout : buliten_set($options, 'woo_cat_page_layout');
$sidebar = ($sidebar) ? $sidebar : buliten_set($options, 'woocommerce_cat_page_sidebar');

if (!$layout || $layout == 'full' || buliten_set($_GET, 'layout_style')=='full') {
    $classes[] = 'shop-item col-xl-3 col-lg-6 col-md-6 col-sm-12';
} else {
    $classes[] = 'shop-item col-lg-4 col-md-6 col-sm-6 col-xs-12';
}
?>
<div <?php post_class($classes); ?>>
    <div class="inner-box">
    <?php
    /**
     * woocommerce_before_shop_loop_item hook.
     *
     * @hooked woocommerce_template_loop_product_link_open - 10
     */
    //do_action( 'woocommerce_before_shop_loop_item' );

    /**
     * woocommerce_before_shop_loop_item_title hook.
     *
     * @hooked woocommerce_show_product_loop_sale_flash - 10
     * @hooked woocommerce_template_loop_product_thumbnail - 10
     */
     $post_thumbnail_id = get_post_thumbnail_id($post->ID);
	 $post_thumbnail_url = wp_get_attachment_url( $post_thumbnail_id );
	 ?>
	 <div class="image">
        <?php woocommerce_template_loop_product_thumbnail();?>
        <a href="<?php echo esc_url(get_permalink(get_the_id()));?>" class="overlay-box"><span class="icon fa fa-link"></span></a>
    </div>

     <?php do_action('woocommerce_before_shop_loop_item_title');

    /**
     * woocommerce_shop_loop_item_title hook.
     *
     * @hooked woocommerce_template_loop_product_title - 10
     */
    //do_action( 'woocommerce_shop_loop_item_title' );

    /**
     * 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');
    ?>

        <div class="lower-content">
            <div class="upper-box">
                <h3><a href="<?php echo esc_url(get_permalink(get_the_id()));?>"><?php the_title();?></a></h3>
                <?php woocommerce_template_loop_price();?>
            </div>
            <div class="lower-box clearfix">
                <div class="pull-left">
                    <a class="add-cart" href="<?php echo esc_url(get_permalink(get_the_id()));?>"><?php esc_html_e('Add to Cart', 'buliten'); ?></a>
                </div>
                <div class="pull-right">
                    <!--Rating-->
                    <div class="rating">
                        <?php woocommerce_template_loop_rating(); ?>
                    </div>
                </div>
            </div>
        </div>

    <?php /**
     * woocommerce_after_shop_loop_item hook.
     *
     * @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>