WordPress   

Get linked products of current grouped product in WooCommerce

<?php $groupedProduct = wc_get_product(get_the_ID()); ?>
<table>
	<tr>
		<th>Linked Products</th>
	</tr>
	<?php foreach($groupedProduct->children as $linkedProduct) { ?>
	<tr>
		<td><a href="<?php echo get_the_permalink($linkedProduct); ?>"><?php echo get_the_title($linkedProduct); ?></td>
	</tr>
<?php }	?>
</table>
Need a helping hand in fixing your website issues?

If you are facing any problems in implementing these code snippets and tutorials, you can hire us to fix your website issues.

Hire Us