Archived topic
add a login icon next to cart in canvas menu
3 replies · Started by WALTER on May 22, 2020
I would like to add an icon with a link to account, and if the username is logged in, this will appear next to the cart icon. in the attached picture frame where I need it to appear

Hi there,
is this just for Mobile ?
if it is in the mobile, I want to put it in the canvas menu
Try creating a hook element with the inside_mobile_menu_bar hook:
https://docs.generatepress.com/article/hooks-element-overview/
Then this for the content:
<?php if ( is_user_logged_in() ) { ?>
account icon here
<?php }
Make sure to check execute PHP.