woocommerce_grouped_product_list_link

woocommerce_grouped_product_list_link

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_grouped_product_list_link') is found 1 times:

  • /templates/single-product/add-to-cart/grouped.php line 88
    							$value = ob_get_clean();
    							break;
    						case 'label':
    							$value  = '<label for="product-' . esc_attr( $grouped_product_child->get_id() ) . '">';
    							$value .= $grouped_product_child->is_visible() ? '<a href="' . esc_url( apply_filters( 'woocommerce_grouped_product_list_link', $grouped_product_child->get_permalink(), $grouped_product_child->get_id() ) ) . '">' . $grouped_product_child->get_name() . '</a>' : $grouped_product_child->get_name();
    							$value .= '</label>';
    							break;
    						case 'price':
    							$value = $grouped_product_child->get_price_html() . wc_get_stock_html( $grouped_product_child );
    							break;
    						default: