Ever wondered if it’s possible enabling special features in phtml for logged in clients? Yes, it’s possible. Just with a simple if/else statement.
<?php
if
(
$this
->helper(
'customer'
)->isLoggedIn()) {
echo
"Special content for customers"
;
}
else
{
echo
"The special content is not visible for you, login first."
;
}
?>
Now you’re able to display for example your price only to customer that are logged in or give customers that are logged in a discount code.