Thank you so much, the help was great but i had to change a thing, the part of the combination id.
This is your code
{assign var='has_combination' value=false}
{foreach from=$cart->getProducts() item='product'}
{if $product.id_product_attribute == 13}
{assign var='has_combination' value=true}
{break}
{/if}
{/foreach}
And this is the code i used
{assign var='has_combination' value=false}
{foreach from=$cart->getProducts() item='product'}
{if str_replace (',','',$product.instructions_id) == 29}
{assign var='has_combination' value=true}
{break}
{/if}
{/foreach}
But it was helpfull.
Thank you