Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,526 through 1,550 (of 22,682 total)
  • Author
    Search Results
  • #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

    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!

    #311750

    In reply to: Booking plugin

    rashidkalwar
    Participant
    #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

    #311727
    clickallco
    Participant

    I haven’t tried it myself but iFlyChat could be an alternative, you’d need a free iFlyChat api key by signing up on their website though.

    iFlyChat – WordPress Chat

    yomyaffe
    Participant

    Sorry? I m a little new nerd with wordpress, allways develop my own webs… what is this plugin? Where can i found it, and how can i use it

    #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.

    #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

    baedyllion
    Participant

    Hello everyone,

    I’m pretty new to wordpress and buddypres and have to add I’m not a coder myself. I’m trying to find a solution on how I can remove ‘All Members’ and ‘Mentions’ in activity page in buddypress. In activity page I want to show just the activity of ‘My Groups’ . I tried CSS to do that but It didnt work out. Can anybody help me with this ?

    Thanks in advance.

    Cheers.

    #311609
    balebond
    Participant

    Running WordPress 5.4.1. and Buddypress 5.2. Users can’t register. With all other plugins off and using 2019 or 2020 themes, the front-end registration is still not working. The page does a quick refresh but no confirmation message, nothing recorded in database and no emails are sent. Not sure when this stopped working but had been on auto-pilot for at least a year with various plugins and Socialize theme by Ghostpool/Envato. User registration from the admin panel does work. With Buddypress also disabled saw that WordPress user registrations would work. https://godhelp.net/register/

    Any ideas?

    #311601
    @mercime
    Participant

    > I’ve just asked in Slack in Formidable and they have said that Formidable works with the WordPress user tables. So should BuddyPress not just find those fields?

    If that’s how they answered, then it looks to me that you would have to hire a developer to integrate your premium form plugin with BuddyPress. Have you tried searching their channel with regards to possible solutions with BP integration like another premium form plugin does? On our end, we have no access to their premium plugin and I’m reasonably sure that some of their clients have asked about support for BP.

    #311584
    kingfisher64
    Participant

    @mercime – thanks for replying. I’ve just asked in Slack in Formidable and they have said that Formidable works with the WordPress user tables. So should BuddyPress not just find those fields?

    I’m assuming Buddypress works this way too?

    Trying to get my head around exactly how both work so my apologies for the ignorance.

    Thanks for your time 🙂

    Kookidooki
    Participant

    Hello guys,

    I’m using the latest WP and Buddypress version for a new site. During testing we’ve encountered some problems:

    1. Cannot crop and upload avatars.
    2. Cannot upload images => it’s throwing http error.

    I’ve never seen this kind of problem before on other (older) buddypress and wordpress installs. We’re still using the same server.

    I did some search and some saying it’s a GD-library problem that’s not installed (?).

    What exactly is the problem and how can we fix this?

    Thank you for your time.

    djintelbe
    Participant

    Hello,

    I am getting problem with “Load more” in my Buddypress activity stream.
    When I click the “Load More” on the buddypress activity it loads more but does not refresh it. I want to make it “loads more” and refreshes at the same time after the load more is clicked on user activity stream.
    The raison I want that is I am using MathJax to render mathematical symbols ans equations and it needs the page to be refreshed before redering them.

    Please help me, I begg you. I need really that and I tried solving it myself several days but nothing.

    Wordpress version: 5.4.1
    Buddypress version : 5.2.0

    #311580
    krline
    Participant

    Could it be the MU-plugin “rms_unique_wp_mu_pl_fl_nm.php” no author, no version… Seems like something that was installed without you knowing it (maybe sneeked in when trying a plugin from non wordpress site)
    Looking at the plugin, seems to open a remote login to your site…

    #311576
    iamthewebb
    Participant
    #311552
    clickallco
    Participant

    Maybe this plugin could help you

    BuddyPress Global Search

    #311537
    shanebp
    Moderator

    1. you aren’t supposed to do anything with the do_action. I was just showing you that hook exists.

    2 & 3 – did you put the function in BOTH functions.php and bp-custom.php ?
    If so, I said OR not AND. In both places it will cause a fatal error and show an entry in the log.
    Learn how to debug in WP: https://codex.wordpress.org/WP_DEBUG

    If not, then I don’t know what the issue is. It works properly on my test install.

    #311532

    In reply to: First and Last name

    Varun Dubey
    Participant

    @eleconte Create first name and last name fields in xprofile section and use https://wordpress.org/plugins/bp2wp-full-sync/ to sync xprofile with wp user fields

    #311505
    Bigue Nique
    Participant

    Here is the solution for forcing BP uploads form every MULTIBLOG-enable network sites to be stored on (and fetched from) the main site : https://buddypress.trac.wordpress.org/ticket/6931#comment:1

    To put it simple, simply create a file wp-content/plugins/bp-custom.php and paste in the code from this gist: https://gist.github.com/imath/91d56292673e6de61597

    The code speaks for itself.

    #311503
    sandaap
    Participant

    Ok, I installed a fresh WordPress file system with a fresh database. Just install and activate BuddyPress, no other changes. Right now, I see content on the default pages of PB.

    But I still don’t understand, where or how I can create topics…

    sandaap
    Participant

    Today, I tried to install BuddyPress the first time. But I still too stupid to get to running.

    First, I tried the actual stable version 5.2.0 without luck. After this, I tried it with 6.0.0RC2 with the same result.

    My problem is: I don’t find out, how to create new topics or manage groups.

    Is there any special URL doing this?

    WordPress: 4.9.13
    PHP: 7.3.x
    Database: MariaDB 10.4.11
    Theme: Hueman 3.5.3

    In BuddyPress 5.2, the pages for Members, Activity, Activation and Registering were created automatically. In BP 6 not and the Repair Tool does not create them automatically.

    All of these pages are empty for me.

    But inside the AdminBar, I see the “0” and I can use the several private pages.

    How can I configure the groups, where I can open topics and how do I do this?

    Sorry, but it seems I’m too stupid for BP… 🙁

Viewing 25 results - 1,526 through 1,550 (of 22,682 total)
Skip to toolbar