Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,551 through 3,575 (of 69,016 total)
  • Author
    Search Results
  • #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.

    #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);
    }
    }

    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?

    ghadirassadi
    Participant

    Hi,
    I’m using Buddypress and woocommerce with OneSocialTheme and MarketPlace from BuddyBoss.
    It’s really great that buddypress has notification feature, allowing to notify your social activities such as friend request, message etc.

    As you know, when you order a product, you would instantely receive emails.
    I was wondering if there is a way I can add woocommerce order statut into buddypress notification ?

    #311677

    In reply to: Styling buddypress

    Varun Dubey
    Participant

    @benhutchenspearson Template Hierarchy is an excellent point to start to get a better understanding of BuddyPress template files.

    Template Hierarchy

    #311674
    ivanwancora
    Participant

    HI

    We are developing a site with many hidden groups (around 20). When a hidden group is created nots visible in the loop of groups, and its only accessible by the url if you are in this group. So we need to know if exist any way to display the hidden group you are in the main menu of wordpress hiding the other groups and options of buddypress in the main navigation.

    We don’t know if that possible.

    Thanks a lot for your time. We appreciate you anwers.

    #311673
    iamthewebb
    Participant

    Hi sultan51,
    Without more information or info on steps you have taken to diagnose the problem it is hard to help

    Have a read through and try the suggested fixes https://buddypress.org/support/topic/when-asking-for-support-2/

    #311669
    benhutchenspearson
    Participant

    Hi All,

    I am really struggling to understand the file structure in BP. Specifically, I am looking to make some changes to aesthetics. For most part I have been able to change some CSS properties, but have noticed some alignment issues with elements in the page that would like to rectify

    #311652
    N33D
    Participant

    Quick update: once I deactivate the WP Mail SNTP plugin which I have set up with Sendgrid the emails of BuddyPress start working again.

    So it seems because because WP Mail SMTP Reconfigures wp_mail() BuddyPress mails gets broken or something.

    Still have no clue why it isn’t working with WP Mail SMTP.

    #311649
    Matt Crawford
    Participant

    I just ditched the platform. Buddypress sucks.

    #311648
    N33D
    Participant

    Hi there,

    I found many other threads about this problem, but it seems nothing works out on my end. I have the latest version of WordPress and BuddyPress, have not that many plugins installed.

    All other emails are working and even I receive an email about a new user registration. But the new user don’t receives his activation email or new friend email.

    I use Sendgrid for emails which I have set up with WP Mail SMTP. Test emails are working, only BuddyPress emails are not working. BuddyPress emails are also not visible in Sendgrid, so they never leave WordPress.

    Also tried to do a repair from Tools -> BuddyPress (Reinstall emails -delete and restore from defaults) but that also doesn’t work out. I’m out of ideas. Such functionality should work out of the box.

    Hope anyone can help me out here.

    Thanks in advance.
    Justin

    bjansson2
    Participant

    buddypress not sending messaging notications to members

    1) The email address works
    2) I do get messages when someone updates a password etc
    3) He did send out that message to 98 people – they just didn’t go through
    4) I’ve checked the email routing, it’s correct.
    5) Everything is updated to the latest version.
    6) email notification used to work. After updates they stopped.

    Anybody got any ideas?

    woofy123
    Participant

    @prashantvatsh

    Hi Prashant Sir,

    I didn’t know how to reach to you and so I had to reply to this thread.

    I am having a problem and I think you might be able to help me.

    I have this plugin called wise chat pro and it says they integrate buddypress and what I want to do is the following—

    1. When new messages arrive in the wise chat channel they appear in the users bp-profile under the bp-notifications
    2. whenever a user is mentioned in a chat—that also appears in the users bp-profile under the mentions column.

    So in short, how can I connect both plugins so that the new messages and the @mentions appear in the users bp profile under the notification nd mentions section.

    I’ve seen a lot of replies by you and one reply helped me show user profile on a blank page so I thought you could help me with this too..

    Thank you very much

Viewing 25 results - 3,551 through 3,575 (of 69,016 total)
Skip to toolbar