BuddyBoss Home – Web Support Forums Solutions Social Learner Activity / Profile conflict in Social Learner

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #47498
    @unstoppablerecordingmachine

    Alright, the issue I’m noticing is that on mobile (iPhone / Safari) I’m getting some navigation conflicts…

    Here’s some scenarios:
    Scenario 1
    Using BuddyBoss Wall and BuddyPress Reorder Tabs with “Default Profile Page” set to “Profile”
    On Desktop: Activity and Profile links work fine
    On iPhone Safari:
    Hold down on Profile and the URL is /members/username/profile
    Hold down on Wall and the URL is /members/username/activity
    Click on Profile and the destination is the Profile
    Click on Wall and the destination is the Profile

    Scenario 2
    Using BuddyBoss Wall and BuddyPress Reorder Tabs with “Default Profile Page” set to “Activity”
    On Desktop: Activity and Profile links work fine
    On iPhone Safari:
    Hold down on Profile and the URL is /members/username/profile
    Hold down on Wall and the URL is /members/username/activity
    Click on Profile and the destination is the Wall
    Click on Wall and the destination is the Wall

    Here is my plugin setup:
    BadgeOS
    BadgeOS BuddyPress Notifier
    BadgeOS Community Add-On
    BadgeOS LearnDash Add-On
    bbPress
    Boss for LearnDash
    BuddyBoss Wall
    BuddyPress
    BuddyPress Follow
    BuddyPress for LearnDash
    BuddyPress Global Search
    BuddyPress Reorder Tabs
    LearnDash LMS
    LearnDash Pro Panel

    I have some custom code that could effect this, in functions.php I have:

    function bb_remove_docs_tab() {
    	if(!is_plugin_active( 'buddypress-docs/loader.php' ) ) {
    		remove_action('template_redirect', 'bb_child_doc_menu_count_tabs', 999);
    	}
    }
    
    function bb_setup_profile_tabs_js() {
    	global $bp;
    	$bp->bp_nav['messages'] = false;
    	$bp->bp_nav['settings'] = false;
    	$bp->bp_nav['following'] = false;
    }
    
    add_action( 'init' , 'bb_remove_docs_tab' , 999 );
    add_action( 'bp_setup_nav', 'bb_setup_profile_tabs_js', 1000);

    In my Custom CSS I have:

    /*this makes the word achievements appear on a single line for mobile view*/
    #buddypress #mobile-item-nav ul li a{width:84px;text-align:center;}
    
    /* this flattens the social icons on user profile */
    .alt-social-icon{
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    
    /*this will hide the phantom mobile buttons that have no title*/
    #-personal-li{
    	display:none !important;
    }

    Answers

    #47501
    @unstoppablerecordingmachine

    If I Deactivate BuddyPress Reorder Tabs and leave BuddyBoss Wall activated, the same behavior occurs.
    If I Deactivate BuddyBoss Wall and leave BuddyPress Reorder Tabs activated, the same behavior occurs.
    If I Deactivate BuddyBoss Wall and BuddyPress Reorder Tabs, the same behavior occurs.

    #47638
    @unstoppablerecordingmachine

    I removed the custom code and the issue is still there. In fact, this issue occurs on a fresh install.

    #47670

    Anonymous
    @

    Hi @unstoppablerecordingmachine, I have passed it to our development team….they will resolve it soon.

    Regards
    Pallavi

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Activity / Profile conflict in Social Learner’ is closed to new replies.