Hi Everyone
if added this code to show the alias in item view.
if (isset($x->alias) && $x->alias != '') {
echo '<div class="ph-item-alias-box">';
echo '<div class="ph-alias-txt">'.JText::_('COM_PHOCACART_alias').':</div>';
echo '<div class="ph-alias">';
echo PhocacartRenderFront::displayLink($x->alias, $x->aliaslink);
echo '</div>';
echo '</div>';
echo '<div class="ph-cb"></div>';
}
in public_html/components/com_phocacart/views/item/tmpl/default.php
And it works fine but it shows it incorrectly.
Alias:
99210
My question is how can I get the code or alias to appear next to it like this.
Alias: 99210
Please let me know
Thanks in advance