/home/bonphmya/topcontenedor.com/wp-content/themes/digitaz/woocommerce/content-product-list.php
<?php

defined('ABSPATH') || exit;

global $product;

// Ensure visibility.
if (empty($product) || !$product->is_visible()) {
    return;
}
?>
<li <?php wc_product_class('product-list', $product); ?>>
    <?php
    /**
     * Functions hooked in to digitaz_woocommerce_before_shop_loop_item action
     *
     */
    do_action('digitaz_woocommerce_before_shop_loop_item');


    ?>
    <div class="product-transition">
        <div class="product-image">
            <?php
            /**
             * Functions hooked in to digitaz_woocommerce_before_shop_loop_item_title action
             *
             * @see woocommerce_show_product_loop_sale_flash - 10 - woo
             * @see woocommerce_template_loop_product_thumbnail - 15 - woo
             *
             */
            do_action('digitaz_woocommerce_before_shop_loop_item_title');
            ?>
        </div>
        <div class="group-action top">
            <div class="shop-action vertical">
                <?php
                digitaz_wishlist_button();
                digitaz_quickview_button();
                digitaz_compare_button();
                ?>
            </div>
        </div>
    </div>
    <div class="product-caption">
        <?php
        /**
         * Functions hooked in to digitaz_woocommerce_shop_loop_item_title action
         *
         * @see digitaz_woocommerce_get_product_category - 5 - woo
         * @see woocommerce_template_loop_product_title - 5 - woo
         */
        do_action('digitaz_woocommerce_shop_loop_item_title');

        /**
         * Functions hooked in to digitaz_woocommerce_after_shop_loop_item_title action
         *
         * @see woocommerce_template_loop_price - 15 - woo
         * @see woocommerce_template_loop_rating - 20 - woo
         * @see digitaz_woocommerce_get_product_description - 25 - woo
         * @see digitaz_woocommerce_product_list_add_to_cart - 30 - woo
         *
         */
        do_action('digitaz_woocommerce_after_shop_loop_item_title');
        ?>
    </div>
    <?php
    /**
     * Functions hooked in to digitaz_woocommerce_after_shop_loop_item action
     *
     */
    do_action('digitaz_woocommerce_after_shop_loop_item');
    ?>
</li>