Search Results for 'wordpress'
-
Search Results
-
Hi
We have copied over community builder for Joomla to Buddypress in Wordpres.
All is great but I need to know how to be able to manually add new users to WordPress that will enable their profile to be displayed the same as the users that we have copied over from Community Builder.
thanks
Paul
Topic: No Menu Items for Buddypress
Hi,
I am new to buddypress. I have implemented the Kleo theme. When I am trying to sign-up with non-custom emails viz: @gmail.com or @hotmail.com, etc. The registration verification email does not reach the mailbox.
Kindly Help
WordPress Version 6.7.2
BuddyPress Version 14.3.3
https://cfoforum.co.inTopic: Infinite replies
Hello,
I’m trying to create custom commenting on a buddypress install. I basically would like to have 2 levels of nested comments, and infinite replies without the indentation causing comments to be unreadable. I found this code, but I think it’s specific to WordPress comments, not buddypress:
// Add a custom reply link for infinite comments
function add_a_reply_link($comment) {
$temp = get_comment_id();
$comment_handle = get_comment($temp);
// $comment_handle = get_comment(get_comment_id());
$comment_link = get_comment_link($comment_handle);
$comment_id = get_comment_id();
$post_id = get_the_id();
$author = get_comment_author();$comment= $comment . ‘<p>Reply</p>’;
return $comment;
}add_filter(‘get_comment_text’, ‘add_a_reply_link’);
// Remove the default reply link
function remove_reply_link() {
return ”;
}
add_filter(‘comment_reply_link’, ‘remove_reply_link’)I added buddypress groups to the website as a feature for members to share posts on the group activity feed, live chat and create networking groups.
However, when i go to the groups homepage and the text box at the top to share a post wont work. It lets me click on it and type but there isnt a submit button to share the post. I also had to switch the template pack from BP Nouveau to BP Legacy because on the Nouveau template the activity feed page does not even show up at all. I’m using Astra as my WordPress website theme at the moment.Hi support team,
I’ve allready asked you few monthes ago – you told me “all is ok” – but I still cannot crop a profile photo. I hoped that the issue would be solved by itself with updates – but it did not.
Please try it yourself – https://members.life-science.euI have the AVADA 7.11.14 theme, but I am worry to switch to the twenty twenty five because I will not crash the whole WebSite.
Buddypress 14.3.3
Wordpress 6.7.2You also told me it’s a problem of AVADA and AVADA told me it’s a problem of BuddyPress. I guess you understand – this doesn’t help me.
Thanks in advance
Best wishesHi,
I am facing an issue with the media upload option in BuddyPress on my Community Guidelines page. When I try to upload a media file:
The “Choose File” option appears, and the file successfully uploads in the interface.
However, the file suddenly disappears, and I get a red error message saying, “Please choose some content to post.”Steps I’ve Taken to Fix It:
-
Tried using custom code to resolve the issue—no success.
Cleared cache from the hosting panel and WordPress dashboard.
Checked for plugin conflicts by disabling all other plugins, but the issue still persists.
Tested on different themes—the issue remains.Moreover strange thing is, Media upload works fine if I go to My Profile → Media and post on my feed.
The issue only happens inside Groups—media upload is not working on group posts.
I have also reviewed some BuddyPress articles where users reported the same issue, but I didn’t find a resolution.
i.e, https://buddypress.org/support/topic/cant-upload-media-from-sitewide-activity-stream/As I am handling a community website, I urgently need this feature to work.
Please provide guidance on how to fix this issue.My Site’s URL: edit: link removed
Thank you!
I have a custom template page that I’ve added specific bp-activities and its comments (pulled some code from the activity-loop).
In Buddypress v11.4.3, everything was working fine, the activity displays and comments + reply functionality works – click on a reply and the .ac-form moves to selected reply/comment and it nests it as expected.
Since Buddypress 12, replies no longer work. I think it’s because the Buddypress scripts no longer load on NON-buddypress pages. I tried enqueueing Buddypress scripts myself using a function:
but just loading the scripts is not enough. When I replaced buddypress-activity.js with my own version to debug, I noticed that BP_Nouveau returns as ‘undefined’ and so none of the script functionality would run.
I’m probably missing something really simple but how can I load Buddypress core scripts or styles in my own custom wordpress template?