/**
* Theme Name: Poco Child
* Description: This is a child theme of Poco, generated by Merlin WP.
* Author: <a href="https://pavothemes.com/">Pavothemes</a>
* Template: poco
* Version: 2.2.6
*/
/**
 * Shop ürün kartında (loop) varyasyonların altına "Ek Seçenekler / Ayrıntılar" butonu ekler.
 */
/**
 * Barn2 + Variation Swatches
 * Shop kartında swatches ALTINA yönlendirme butonu
 */
add_action('woocommerce_after_shop_loop_item', function () {
    global $product;

    if ( ! $product instanceof WC_Product ) return;

    $url = get_permalink($product->get_id());

    if ( $product->is_type('variable') ) {
        $text  = 'Ek Seçenekler';
        $class = 'jm-swatches-btn jm-swatches-btn--options';
    } else {
        $text  = 'Ayrıntılar';
        $class = 'jm-swatches-btn jm-swatches-btn--details';
    }

    echo '<a href="'. esc_url($url) .'" class="'. esc_attr($class) .'">'. esc_html($text) .'</a>';
}, 25);
