-
Author
-
November 3, 2017 at 16:31 #178830dlxParticipant
Hello!
I´d like to place some extra icons in the mobile navigation so users don´t have to open the burger menu. So they get quick access to the main pages in the community (BuddyPress).
I see there´s already one icon for the notifications. If the links could be placed at the left side of the notifications icon this would be great. Is this possible with Kleo?
Best regards,
JanNovember 4, 2017 at 15:22 #178894Kieran_SQModeratorHi Jan,
Thanks for contacting us about moving items out of the mobile menu and into the header, I am going to ask one of our developers to look into this for you, they’ll be in touch as soon as they can (Mon-Fri East Europe Time).
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
November 6, 2017 at 18:17 #179072RaduModeratorHi,
Just use this function
COPY CODEfunction add_ajax_search_mobile_icons() { $items .= '<a title="View Notifications" class="my-custom-item" href="http://rdu.local/kleo/members/admin/notifications"><span class="sq-notify-mobile"><i class="icon-bell"></i></span></a>'; $items .= '<a title="View Dummy Menu 2" class="my-custom-item-2" href="http://rdu.local/kleo/members/admin/notifications"><span class="sq-notify-mobile"><i class="icon-mail-alt"></i></span></a>'; echo $items; } add_action('kleo_mobile_header_icons', 'add_ajax_search_mobile_icons');
If you want only one item delte entire item line
COPY CODE$items .= '<a title="View Dummy Menu 2" class="my-custom-item-2" href="http://rdu.local/kleo/members/admin/notifications"><span class="sq-notify-mobile"><i class="icon-mail-alt"></i></span></a>';
The function needs to be pasted in wp-content/themes/kleo-child/functions.php
NOTE : Child theme needs to be installed and activated.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.