Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,301 through 4,325 (of 73,985 total)
  • Author
    Search Results
  • #311818
    danthesignman
    Participant

    Solved. I created a register page and the set it up in Buddypress
    Thank you.

    #311816
    Lars Henriksen
    Participant

    I managed to promote myself to group admin via database following your instructions, but I still don’t see and therefore can’t manage members from buddypress, even when changing theme. I do see the members in the database.
    I discovered that I do have other groups created by site members – and I am able to manage members in these groups as a site admin. Strange.

    Thanks for your time and help anyway. 🙂

    Lars.

    #311815
    danthesignman
    Participant

    This problem started with the Buddypress upgrade. Not sure how to assign the registration page but I’ll figure it out
    thank you

    #311814
    amnamn180
    Participant

    I’m using Facebook log in, in conjunction with BuddyPress (I’m using the Nextgen Social Login WordPress Plugin).

    The password, however, does not transfer over.

    If the user registers using facebook, then logs out. Then logs back in using the facebook email and password – BuddyPress does not recognise the details.

    It also does not notify the user of their username for logging in (which it makes up).

    Any advice?

    #311810
    clickallco
    Participant

    Did you allow your wordpress site to register members? Did you assign the register page to be the registering page through Buddypress?

    #311801
    Lars Henriksen
    Participant

    Edit:
    Deactivating all plugins but Buddypress doesn’t help.

    #311787
    a3132
    Participant

    I had been using this code to show profile fields on a member’s card in the directory. It was working perfectly until the last BuddyPress update. After the update it disappeared. (even with all other plugins disabled and on the Twenty-Twenty theme)

    Is there a fix for this or should I change something in my code?

    function add_city_to_members_loop() {
    $field_content = bp_get_member_profile_data( ‘field=City’ );
    if( $field_content != false )
    echo ” – ” . $field_content;
    }
    add_action( ‘bp_directory_members_item’, ‘add_city_to_members_loop’ );

    #311786
    clickallco
    Participant

    You should be able to find some info on it here

    How to hide profile menu items from other users

    #311783
    iamthewebb
    Participant

    Hi,
    Whatever is doing the lazy loading is breaking this for you, on your profile page the link which works is

    https://www.vhsfotoclub.de/wp-content/uploads/avatars/18/5ca4f3e4be1ce-bpfull.jpg

    on your gallery list the link is
    https://www.vhsfotoclub.de/wp-content/uploads/avatar%20lazyloads/18/5ca4f3e4be1ce-bpfull.jpg

    I’m afraid this is not a buddypress issue.

    #311782
    mickysoft
    Participant

    Hi,
    I have a problem with the new profile block. The profile pictures of the users displayed there are only displayed if you are logged in. If you are not logged in, an error is generated instead of the profile picture.
    But I can call up the user profile via the link, in which the profile picture is displayed correctly.

    https://www.vhsfotoclub.de/mitgliederbereich/galerien-der-fotoclub-mitglieder/
    Wordpress Version 5.4.1–de_DE
    BuddyPress 6.0.0

    #311778
    clickallco
    Participant

    You could override the template and insert your theme’s sidebar. Depending on which Buddypress template you’re using, you’ll find it in

    plugins > buddypress > bp-templates > the theme you're using > buddypress > members > index.php

    Once you’ve grabbed it and inserted the sidebar there should be plenty of tutorials on the net on how to upload it to your own server, e.g. https://wproot.dev/blog/override-buddypress-template-files/

    #311777
    clickallco
    Participant

    This isn’t a Buddypress related problem but an issue with your current theme / server.

    A quick look through your site shows you’re using a bloated page builder, use redundant styles and scripts not enqueued properly for specific pages, dont minify your js / styles and many other things.

    You’d need to clean that up and take it from there.

    #311773
    hairbeautytraining
    Participant

    Hi, I installed Buddypress plugin on my WordPress site, together with the Masterstudy theme.
    My problem is that I don’t know how to set the pages that ask me in the settings pages section (Members, Activity Flow, Register and Activate), to make Buddypress interact with Masterstudy. I tried from the drop-down menu next to Members, Activity Flow, Register and Activities, he has to choose them but the pages are not there, there are only those of Masterstudy and I would not want to confuse. Buddypress should create a community with Mesterstudy members I think.
    Thank you if you can help me.
    WordPress version 5.4.1.
    BuddyPress version 6.0.0
    Link website https://hairbeauty.training

    #311766
    Mathieu Viet
    Moderator

    BuddyPress 6.0.0 has just been released! Many thanks to our 42 contributors, let’s upgrade and enjoy their work.

    BuddyPress 6.0.0 “iovine’s”

    #311762
    stellamariee
    Participant

    @mercime, unfortunately, that didn’t work, there is no specific layout with or without a sidebar.


    @clickallco
    do you know which file I’d need to put that into? And if I reassign the directory through BuddyPress settings to a different page, the sidebar does appear on the ‘datenschutz’ page, which is why I thought it wasn’t connected to the theme but I could totally be wrong.

    Thanks for your help!

    woofy123
    Participant

    @shanebp

    Hi, thanks for your reply before. I checked with the creators of the plugin and they say they can’t do it. so i decided to check by myself….the wise chat plugin redirects notifications to the email and the code for that is below….i don’t know coding and all that so i seriously need your help…what code do i put inplace of the email so that messages are reduirected to buddypress notifications? Please help..The code—–

    `<?php

    /**
    * WiseChat user notifications services.
    *
    * @author Kainex <contact@kaine.pl>
    */
    class WiseChatUserNotificationsService {

    /**
    * @var WiseChatUserNotificationsDAO
    */
    private $userNotificationsDAO;

    /**
    * @var WiseChatSentNotificationsDAO
    */
    private $sentNotificationsDAO;

    /**
    * @var WiseChatUsersDAO
    */
    private $usersDAO;

    /**
    * @var WiseChatChannelUsersDAO
    */
    private $channelUsersDAO;

    /**
    * @var WiseChatHttpRequestService
    */
    private $httpRequestService;

    /**
    * @var WiseChatOptions
    */
    private $options;

    public function __construct() {
    $this->options = WiseChatOptions::getInstance();
    $this->userNotificationsDAO = WiseChatContainer::getLazy(‘dao/WiseChatUserNotificationsDAO’);
    $this->sentNotificationsDAO = WiseChatContainer::getLazy(‘dao/WiseChatSentNotificationsDAO’);
    $this->usersDAO = WiseChatContainer::get(‘dao/user/WiseChatUsersDAO’);
    $this->channelUsersDAO = WiseChatContainer::get(‘dao/WiseChatChannelUsersDAO’);
    $this->httpRequestService = WiseChatContainer::getLazy(‘services/WiseChatHttpRequestService’);
    }

    /**
    * Sends all notifications for message.
    *
    * @param WiseChatMessage $message
    * @param WiseChatChannel $channel
    */
    public function send($message, $channel) {
    foreach ($this->userNotificationsDAO->getAll() as $notification) {
    $this->sendNotification($message, $channel, $notification);
    }
    }

    /**
    * Sends the notification.
    *
    * @param WiseChatMessage $message
    * @param WiseChatChannel $channel
    * @param WiseChatUserNotification $notification
    */
    private function sendNotification($message, $channel, $notification) {
    if ($notification->getType() == ’email’) {
    $this->sendEmailNotification($message, $channel, $notification);
    }
    }

    /**
    * Sends e-mail notification.
    *
    * @param WiseChatMessage $message
    * @param WiseChatChannel $channel
    * @param WiseChatUserNotification $notification
    */
    private function sendEmailNotification($message, $channel, $notification) {
    $timeRange = null; // seconds

    if ($notification->getFrequency() == ‘daily’) {
    $timeRange = 24 * 60 * 60;
    }
    if ($notification->getFrequency() == ‘hourly’) {
    $timeRange = 60 * 60;
    }
    if ($timeRange === null) {
    return;
    }

    if ($this->sentNotificationsDAO->wasNotificationSendForUser($notification->getId(), $channel->getId(), $message->getUserId(), $timeRange)) {
    return;
    }

    $recipientUser = $this->usersDAO->get($message->getRecipientId());
    if ($recipientUser === null) {
    return;
    }

    $channelUser = $this->channelUsersDAO->getActiveByUserIdAndChannelId($recipientUser->getId(), $channel->getId());
    if ($channelUser !== null) {
    return;
    }

    if ($recipientUser->getDataProperty(‘disableNotifications’) === true) {
    return;
    }

    if (!($recipientUser->getWordPressId() > 0)) {
    return;
    }

    $recipientWordPressUser = $this->usersDAO->getWpUserByID($recipientUser->getWordPressId());
    if ($recipientWordPressUser === null) {
    return;
    }

    $sentNotification = new WiseChatSentNotification();
    $sentNotification->setNotificationId($notification->getId());
    $sentNotification->setSentTime(time());
    $sentNotification->setChannelId($channel->getId());
    $sentNotification->setUserId($message->getUserId());
    $this->sentNotificationsDAO->save($sentNotification);

    // send the e-mail:
    $templateData = array(
    ‘${recipient}’ => $recipientWordPressUser->display_name,
    ‘${recipient-email}’ => $recipientWordPressUser->user_email,
    ‘${sender}’ => strip_tags($message->getUserName()),
    ‘${message}’ => $message->getText(),
    ‘${channel}’ => $message->getChannelName(),
    ‘${link}’ => $this->httpRequestService->getReferrerURL()
    );
    $emailSubject = str_replace(array_keys($templateData), array_values($templateData), $notification->getDetails()[‘subject’]);
    $emailBody = str_replace(array_keys($templateData), array_values($templateData), $notification->getDetails()[‘content’]);

    wp_mail($recipientWordPressUser->user_email, $emailSubject, $emailBody);
    }
    }

    #311754
    Mr.Mirko
    Participant

    Dear all,

    I had theme Agama Version 1.5.5 by Theme Vision runnig on WordPress Version 5.4.1 when I installed and activated BuddyPress, then installed and activated BuddyMeet.

    When I realised than some of the menues were missing, I tried setting the BuddyPress Style from “nouveau” to “old” and it worked, the missing menues were visible.

    I changed the theme to Agama Blus Version 1.1.1 by Theme Vision and set the BuddyPress Style back to “nouveau”.

    When I changed the theme back to Agama again, I reveived this error on every page:
    Warning: preg_match(): Compilation failed: quantifier does not follow a repeatable item at offset 1 in /homepages/5/d742650060/htdocs/app821701390/wp-includes/class-wp.php on line 223
    Warning: preg_match(): Compilation failed: quantifier does not follow a repeatable item at offset 1 in /homepages/5/d742650060/htdocs/app821701390/wp-includes/class-wp.php on line 224

    The lines within calss-wp.php contain:
    if ( preg_match( “#^$match#”, $request_match, $matches ) ||
    preg_match( “#^$match#”, urldecode( $request_match ), $matches ) ) {

    I tried several simple themes, deactivated/reactivated BuddyPress and BuddyMeet, deinstalled/reinstalled BuddyPress and BuddyMeet, nothing helped.

    I compared the file class-wp.php with an older version from my backup, but they are similar.

    Anyone got any idea what to do?

    Kind regards,
    Mirko

    stellamariee
    Participant

    Hi! Somehow on my website, the directory page doesn’t show a sidebar, no matter what I try. This is the page where I’d want the sidebar but it doesn’t show: https://starkehand.org/datenschutz/
    If you click on this page, the sidebar shows: https://starkehand.org/impressum

    The page settings of both pages are the same, I’ve tried everything relating to side width, etc. I don’t think it’s a problem with the Neve theme I’m using since the sidebar works on the other page.

    I’m using WordPress 5.4.1
    BuddyPress 5.2.0

    I’d really appreciate your help!! Thanks!

    #311746
    Varun Dubey
    Participant
    #311745
    N33D
    Participant
    #311744
    iamthewebb
    Participant

    I can replicate, could you open a ticket on trac https://buddypress.trac.wordpress.org/newticket

    clickallco
    Participant

    You’d have to code it yourself or find a developer who can combine the two. Otherwise, here’s a start

    https://stackoverflow.com/questions/26576766/add-custom-notification-for-buddypress-related-to-woocommerce

    #311729
    clickallco
    Participant

    Perhaps your text is truncated early because of the many image urls taking up the space? Otherwise it sounds like a plugin / custom code interfering.

    To my knowledge Buddypress does not have image attachment in the activities, it’s usually something you’d get from a third party plugin.

    clickallco
    Participant

    If you meant the sitewide activity page then you could apply some minor css like this.

    #buddypress #activity-all,
    #buddypress #activity-mentions {
    	display:none!important
    }
    rel8
    Participant

    Hi,

    For some reason, once I post a new status with pictures attached, it only shows the first 1 -3 words of the post and then the pictures. How do I make it show all the words?

Viewing 25 results - 4,301 through 4,325 (of 73,985 total)
Skip to toolbar