BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Create Group Tab Subnav for Subforums #41489

    Hello Nick,

    I have created a new forum tab with two child sub-forum names Q & A, Wiki. Please follow the screenshot for more details.

    https://tinyurl.com/yhl7hc5r

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Recent Visitors #41480

    Hello Kiki,

    You can set the default user settings under Settings > Recent Profile Visitors > Default in the admin section. Please give it a try and let me know if it solves your problem or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Niculae,

    Please try the following code. It will remove the link button from the editor toolbar.

    
    
    /**
     * Remove editr link button
     *
     * @param array $buttons Buttons list.
     *
     * @return array
     */
    function buddydev_remove_editor_link_button ( $buttons ) {
    	$buttons = array_diff( $buttons, array( 'link' ) );
    
    	return $buttons;
    }
    
    /**
     * Hook before rendering form fields.
     */
    function buddydev_before_form_before_form_fields() {
    	add_filter( 'mce_buttons', 'buddydev_remove_editor_link_button' );
    }
    
    /**
     * Hook after rendering form fields.
     */
    function buddydev_after_form_before_form_fields() {
    	remove_filter( 'mce_buttons', 'buddydev_remove_editor_link_button', 10 );
    }
    
    add_action( 'bblpro_form_before_form_fields', 'buddydev_before_form_before_form_fields' );
    add_action( 'bblpro_form_after_form_fields', 'buddydev_after_form_before_form_fields' );
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Niculae,

    Sorry for the inconvenience. Slug works the same as default WordPress Posts it does not change as the Post title change. You can manually change the slug in the admin section. With the featured image, What is the issue you are facing when editing the article?. Please do let me know.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Activity ShortCode plugin issues #41470

    Hello Becca,

    Thank you for the acknowledgement. Activity styling depends upon the theme you are using. Please contact the theme author for the same.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] TikTok, YouTube #41469

    Hello Lisa,

    Thank you for posting here. FYI, As TikTok is banned in India so I can not help you much with this issue. Please check out the plugins which offer embedding videos from TikTok and ask the plugin author to support BuddyPress if not supported.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] BuddyPress Live Notification plugin #41393

    Hello Vlad,

    Thank you for the acknowledgement. I am glad that I could help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Profile Completion complete removal #41388

    Thank you for your support.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] BuddyPress Live Notification plugin #41387

    Hello Vlad,

    Thank you for posting. Please try the following code:

    
    add_filter( 'bpln_get_js_settings', function ( $settings ) {
    	// Timeout in settings. Popup hide after number of seconds.
    	$settings['timeout'] = 60;
    
    	return $settings;
    } );
    
    add_action( 'bp_enqueue_scripts', function () {
    	wp_add_inline_style( 'achtung_css', '.achtung .ui-icon.achtung-close-button{overflow:visible !important;}.achtung .ui-icon.achtung-close-button-hover{color:#fff !important;}' );
    }, 11 );
    
    

    Please let me know if it fixes the issue or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Khalid,

    Thank you for the acknowledgement and for marking this topic as resolved.

    Regards
    Ravi