R reddy ink Active member Oct 11, 2014 #1 When my users click on user profile, I would like them to take to "Information" tab instead of profile posts. How do I do that? Many thanks
When my users click on user profile, I would like them to take to "Information" tab instead of profile posts. How do I do that? Many thanks
Jake Bunce Well-known member Oct 11, 2014 #2 Admin CP -> Appearance -> Templates -> page_container_js_body Add this code to the top: Code: <script type="text/javascript"> <xen:if is="{$contentTemplate} == 'member_view'"> $(document).ready(function(){ $('ul.mainTabs li a[href$="#info"]').click(); }); </xen:if> </script> Upvote 0 Downvote
Admin CP -> Appearance -> Templates -> page_container_js_body Add this code to the top: Code: <script type="text/javascript"> <xen:if is="{$contentTemplate} == 'member_view'"> $(document).ready(function(){ $('ul.mainTabs li a[href$="#info"]').click(); }); </xen:if> </script>