Replies
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.
Regards
RaviHello 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- Ravi on November 8, 2021 at 6:51 am in reply to: [Resolved] Prevent users’ access to other pages and articles #41477
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 - Ravi on November 8, 2021 at 6:25 am in reply to: The slug remain unchanged when I Edit an article and change the Title. #41471
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 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
RaviHello 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- Ravi on November 1, 2021 at 12:08 pm 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 - Ravi on November 1, 2021 at 6:55 am in reply to: [Resolved] Profile Completion complete removal #41388
Thank you for your support.
Regards
Ravi - Ravi on November 1, 2021 at 6:54 am 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 - Ravi on November 1, 2021 at 5:04 am in reply to: [Resolved] 404 when signing out from Newly Added Tabs by Profile Tab Creator #41386
Hello Khalid,
Thank you for the acknowledgement and for marking this topic as resolved.
Regards
Ravi