Server : LiteSpeed System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : rahcos ( 1533) PHP Version : 8.4.23 Disable Function : NONE Directory : /home/rahcos/.trash/wp-content/themes/hara/inc/vendors/woocommerce/modules/ |
<?php
if ( !hara_woocommerce_activated() ) return;
/**
* ------------------------------------------------------------------------------------------------
* QuickView button
* ------------------------------------------------------------------------------------------------
*/
if (! function_exists('hara_the_quick_view')) {
function hara_the_quick_view($product_id)
{
if( !hara_tbay_get_config('enable_quickview', false) ) return;
?>
<div class="tbay-quick-view">
<a href="#" class="qview-button" title ="<?php esc_attr_e('Quick View', 'hara') ?>" data-effect="mfp-move-from-top" data-product_id="<?php echo esc_attr($product_id); ?>">
<i class="tb-icon tb-icon-eye"></i>
<span><?php esc_html_e('Quick View', 'hara') ?></span>
</a>
</div>
<?php
}
}