Search Results for 'buddypress'
-
Search Results
-
Hi,
Connection requests don’t display inside the My Profile > Connections Requests tab. I do not know what could be causing this but with this users cannot confirm requests.
Troubleshooting questions:
1. Which version of WordPress are you running? – latest 5.5.1
2. Did you install WordPress as a directory or subdomain install? – directory
3. If a directory install, is it in root or in a subdirectory? – n/a
4. Did you upgrade from a previous version of WordPress? If so, from which version? – not recently / this did not cause the issue, but I updated from the pas latest version
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. – yes, the rest of the site works no issue
6. Which version of BP are you running? – latest, BuddyBoss 1.5.2
7. Did you upgraded from a previous version of BP? If so, from which version? n/a
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? – yes, the list is here: https://ibb.co/VwWVy8p
9. Are you using a standard WordPress theme or customized theme? – customised Stack WP theme + child theme
10. Which theme do you use ? – Stack for WP with child theme
11. Have you modified the core files in any way? – no
12. Do you have any custom functions in bp-custom.php? – no
13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? – Buddyboss installed this built in
14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress – no errors found, only 404 for those pages
15. Which company provides your hosting? – Ionos
16. Is your server running Windows, or if Linux; Apache, nginx or something else? – Linux
17. Which BP Theme are you using? custom – BP Nouveau
18. Have you overloaded any BuddyPress template files. – No
19. Any other site customisations that might have a bearing on the issue? – not that I can think of
20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page. – I couldn’t see this with buddyboss
Thank you
Hi,
I worked on a staging site I’ve now published live and it is not behaving the same as on staging. When logged in as a member, some of the BuddyPress (through BuddyBoss) pages return a 404:
– cover photo
– profile photo
– privacy settingsAlso another odd one is the connection requests don’t display live when they did in staging – I am not sure that’s linked and the more urgent issue is those pages returning a 404.
Troubleshooting questions:
When I switch to plain permalinks the pages work but for the rest of the site it must be postname. When using post name these pages don’t work. I can’t find a way to make them work.
1. Which version of WordPress are you running? – latest 5.5.1
2. Did you install WordPress as a directory or subdomain install? – directory
3. If a directory install, is it in root or in a subdirectory? – n/a
4. Did you upgrade from a previous version of WordPress? If so, from which version? – not recently / this did not cause the issue, but I updated from the pas latest version
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. – yes, the rest of the site works no issue
6. Which version of BP are you running? – latest, BuddyBoss 1.5.2
7. Did you upgraded from a previous version of BP? If so, from which version? n/a
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? – yes, the list is here: https://ibb.co/VwWVy8p
9. Are you using a standard WordPress theme or customized theme? – customised Stack WP theme + child theme
10. Which theme do you use ? – Stack for WP with child theme
11. Have you modified the core files in any way? – no
12. Do you have any custom functions in bp-custom.php? – no
13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? – Buddyboss installed this built in
14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress – no errors found, only 404 for those pages
15. Which company provides your hosting? – Ionos
16. Is your server running Windows, or if Linux; Apache, nginx or something else? – Linux
17. Which BP Theme are you using? custom – BP Nouveau
18. Have you overloaded any BuddyPress template files. – No
19. Any other site customisations that might have a bearing on the issue? – not that I can think of
20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page. – I couldn’t see this with buddyboss
Thank you
[This is a repost as my first post seems to be corrupted, cannot be edited and doesn’t display on the site]
Hello, I am seeing an issue where the BuddyPress plugin seems to be breaking the forum “Subscribe” / “Unsubscribe” links on bbPress. Strangely, it works if JS is enabled (and therefore XHR is used), but does nothing if JS is disabled and the embedded link[1] is used. It just reloads the same page without actually changing the subscribed / unsubscribed state with no errors.
Notes:
- I have tested this with all other plugins disabled.
- Disabling the BuddyPress plugin causes both to work correctly.
- Tried enabling / disabling all combinations of Buddypress bp-components with no effect.
I upgraded both plugins and PHP to the latest versions:
PHP: 7.4.10 Wordpress: 5.5.1 Theme: Divi 4.6.5 (tried others like twentytwenty 1.5) bbPress: 2.6.5 BuddyPress: 6.3.0
Questions:
- Are there any known issues I should look into?
- Any suggestions where to look for debugging? I have WP_DEBUG enabled, but nothing useful in logs. I have tried using Query Monitor plugin, but its a bit unclear where to start looking.
NOTE: I am new to WordPress and its plugin architecture, but have extensive HTML/CSS/JS/bash shell experience and am comfortable in PHP.
Thanks in advance!
Jonathan
[1] Embedded subscribe link which fails:
/forum/FORUMNAME/?action=bbp_subscribe&object_id=361&object_type=post&_wpnonce=XXXXXXXI have Memberpress and Buddypress on my site and when I try to click on notifications from other members in the community, either from my email notification that takes me to my site or from the site itself, when I click on the notifications icon – I receive the message “There has been a critical error on your website. Learn more about debugging in WordPress.”
When I checked the error logs there was this re-occurring error.
PHP Fatal error: Uncaught Error: Call to a member function user_activities() on null in /www/chaosandlightcom_230/public/wp-content/plugins/buddypress/bp-activity/bp-activity-template.php:374
How do I fix this? Thanks:)
/** * Inject content into BuddyPress Activity stream after 'n' activities. */ function buddydev_inject_content_after_n_activities() { static $current_activity_index = 1; // change $n to the correct number of activities. $n = 5; // After how many activities you want to inject content. if ( $current_activity_index % $n === 0 ) { ?> <li class='activity-item activity-ad-item activity-custom-entry'> Your code snippet ... </li> <?php // show the activity injected content. } // increment the current index. $current_activity_index ++; } add_action( 'bp_after_activity_entry', 'buddydev_inject_content_after_n_activities' );I am using this code to put Google ad Inside activity stream.
But, once another tab is clicked, adsense gets error that it does not have minimum 250px to load, and content of tab membes, mentions or whatever will not even load.I have had peepso for about a year now and I’m trying to make the switch to buddypress but I have a lot of users and data along with activity I would like to still save.
Does anyone know if there is a migration tool to pull the data OUT of peepso and import it into BuddyPress?Topic: scrollbars
Hello
I recently installed Buddypress on a social site that I am developing with wordpress and elementor. I need to insert 2 columns on a page; one containing the list of friends and another of activities. I would like to have a vertical scrollbar for the 2 columns but I can’t figure out how to do it or better if there is a plugin for buddypress that does this. Thank you so much if you can help me …Hi all.
I am looking for a solution that, for each individual user
in buddypress, I would like to have each user having their
own frontend page (or called dashboard).For example, when member A and member B are going to a page
like /mypage. Member “A” can have its own page layout that
has a set of customized widgets on /mypage.While Member “B” has also its own page layout also, with
another set of widgets on /mypage.Is there a plugin for that? How to achieve such objective in
buddypress?Currently I am running a theme called WOffice and I am looking
for such solution.Thank you very much.
How do I fix the buddypress profile cover image responsive issue? I see buddyboss and youzer have a great looking cover image. How can I accomplish this. My cover images don’t seem to act the same way….Can someone please help.
I am using wcfm marketplace plugin with buddypress. I have a link in the store sidebar that shows the store owner (buddypress profile info). My problem is ..I don’t know how to make the link look better . I would love to add the buddypress profile avatar and place the user name under the picture. Can someone please help!!! Thus is the code that I was given.
shortcode
[wcfm_store_info data=”bp_url”]code snippet
add_filter( ‘wcfmmp_additional_store_info’, function( $data_value, $data_info, $store_id ) {
if( function_exists( ‘bp_core_get_user_domain’ ) && ( $data_info == ‘bp_url’ ) ) {
$bp_url = bp_core_get_user_domain ( $store_id );
$data_value = ‘‘.$bp_url.’‘;}
return $data_value;}, 50, 3 );
Scenario: BB Press + BuddyPress (well, Buddyboss, technically) Site has multiple forum topics.
I have a “Political” forum. Since most of the topics are divisive, I want to exclude all topics in the “Politics” from going to the BuddyPress activity feed.
All of the Forums will still work the same way, I just don’t want the topics in that forum, or the responses to the topics to be shown in the Activity Feed.
Is there a snippet I can add that will exclude those topics?