Tagged: bp-custom.php, Functions.php, subnav, tabs
Hi!
I just purchased this plugin membership, and I am having this same problem.
The console doesn’t even show anything when I click.
All I get is in network traffic of Dev Tool, and has to do with a data item event.data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAHvwAAsAAAAA3EgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6……………
https://ibb.co/nwGhX65
https://ibb.co/VWMRQfQI will update with list of current plugins later but first I have a question.
We already have code in functions.php for customizing BuddyPress tabs, does this need to be removed for this plugin to work? Is BuddyPress tab code in bp-custom.php any different, will it cause possible conflict?Hi,
Thank you for reporting the issue and creating new topic for it.It seems to be a conflict with one of your currently active plugins or theme.
Please visit Tools->Site Health-> Info and share the list of active plugins/themes from there. We will look into it and assist you.
Thank you
BrajeshHi!
I finally had a chance to follow Your request.
I went ahead and disabled all plugins a few at a time.
I narrowed it down to our theme, UReg, which requires 2 plugins:
WGL Extensions
Ureg Core
If I just deactivate those two required plugins but leave Ureg active, The Buddy Dev Profile Tab shows blank: screenshot: https://ibb.co/SVMDtcmIf I change the theme to 2024, then all the new sub navs are displaying that I have clicked many times for testing!
Ureg is a really nice new BuddyPress theme: https://themeforest.net/item/ureg-buddypress-community-wordpress-theme/45654312
Hi,
Thank you for taking time to investigate.We will need a copy of their theme & plugins to troubleshoot it. Please let me know if you are able to share it? We should be able to have a solution within 2-3 working days of the access to their code.
Regards
BrajeshYea, BPS was also jamming up my site as well because of hidden file protection. I moved the two plugin zips over to cryptpad, here are the downlown links.
Hello,
I have checked it and it conflicts with theme functionality which overrides the default admin meta box layout and converts it to tabbed one. You can use the following code to fix this
add_action( 'admin_enqueue_scripts', function () { $screen = get_current_screen(); if ( ! isset( $screen->id ) || ! in_array( $screen->id, array( 'bpptc_profile_tab' ) ) ) { return; } if ( class_exists('\WGL_Extensions\WGL_Framework_Global_Variables' ) ) { wp_dequeue_style( \WGL_Extensions\WGL_Framework_Global_Variables::get_theme_slug() . '-admin' ); } wp_dequeue_script( 'wgl-extensions-metaboxes' ); }, 20 );
You can place this bp-custom.php file or your theme “functions.php” file. Please give it a try and let me know if it helps or not.
Refer this if you do not know what is bp-custom file
https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/Regards
Ravi
You must be logged in to reply to this topic.