In my test shop I'm seeing an issue with td and tooltip. Ex
In the controller I have:
Code: Select all
$attributes = "<table>";
foreach ($attribute['product_attributes'] as $product_attributes) {
$attributes .= "<tr><td><b>" . $product_attributes['name'] . "</b>:</td><td style='padding-left: 4px'>" . $product_attributes['description'] . "</td></tr>";
}
$attributes .= "</table>";
....................................................................................................................
'attribute' => $attributes,
Code: Select all
<span style="cursor: default; text-decoration: none; color: white;" data-toggle="tooltip" data-placement="top" title="{{ product.attribute }}">
Info
</span>
{{ product.attribute }}<!--attribute test example-->