looking at the products.tpl in hostwhmcs_boxes folder I see this section of the code:
<div class=”fields-container”>
{foreach from=$products item=product}
<div class=”field-row clearfix”>
<div class=”col-xs-12″>
<label class=”radio-inline product-radio”><input type=”radio” name=”pid” id=”pid{$product.pid}” value=”{if $product.bid}b{$product.bid}{else}{$product.pid}{/if}”{if $product.qty eq “0”} disabled{/if} /> {$product.name} {if $product.qty!=””}({$product.qty} {$LANG.orderavailable}){/if}{if $product.description} – {$product.description}{/if}</label>
</div>
</div>
{/foreach}
</div>
You are not outputting the price of the product. What is the code to output the price? example $5/month