how to show Cbk Support link in mobile menu
on :July 24, 2020, 5:44 pm #333
Hi support team
I purchased cbk theme and get cbk support plugin.
On the desktop it is showing under user dashboard but it does not show on the mobile user dashboard side menu.
Can you please tell me how can i link this plugin in the mobile user dashboard side menu.
Thanks
Re: how to show Cbk Support link in mobile menu
on :July 25, 2020, 9:08 am #336
HI!
This is the function that will return the user dashboard link.
<?php echo osc_route_url('cbk_support', array('request' => 'main')); ?>
In theme cbk/include/mobile_menu.php you have
<div class="user-acount-links">
.......
<li>
<a class="m-block" href="<?php echo osc_route_url('cbk_support', array('request' => 'main')); ?>">
<i class="fa fa-sign-out" aria-hidden="true"></i><?php _e('Support', 'cbk'); ?>
</a>
</li>
</div>
Re: how to show Cbk Support link in mobile menu
on :July 25, 2020, 10:36 am #337
Perfect
Thank you very much