Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 851 through 875 (of 22,686 total)
  • Author
    Search Results
  • #322929
    Varun Dubey
    Participant

    not updated from last 4 years, will suggest to avoid it

    Mass Messaging in BuddyPress

    #322928
    cheekeat
    Participant

    Hi @vapvarun. Thanks for your suggestion. I have tried the plugin you suggested. There is another plugin (BuddyPress Activity Shortcode) I have also tried. But both plugins crashed my site upon activation. I have to remove them in safe mode.

    #322927
    Varun Dubey
    Participant
    cheekeat
    Participant

    Hi!

    I am trying to create a shortcode to place the activity loop in a new page, so I can customize and highlight some activities. To start, I inserted the standard loop inside a shortcode function (code as below). But the standard loop failed to show. Just to ensure that my shortcode is ok, I just inserted a “testing 123” text to check.

    FYI, I am using BuddyX theme (WordPress version 5.8.3). I test the code below in functions.php before place it into Code Snippets plugin. Currently, the code is still inside functions.php.

    I placed the shortcode ([mkp_activity]) in a page (link to the page as below). I also try to place the shortcode in widget area. But the loop just did not appear.

    Test Page

    function mkp_bp_activity_shortcode() {
    
    $message = 'testing 123';
    return $message;
    
    if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) :
        while ( bp_activities() ) : bp_the_activity();
    
            locate_template( array( 'activity/entry.php' ), true, false );
    
        endwhile;
    endif;
    
    }
    add_shortcode('mkp_activity', 'mkp_bp_activity_shortcode');

    I am new to this. I am not sure if I am doing this completely wrong. Appreciate any advice. Thanks!

    Regards,
    CK

    #322911
    cesho2015
    Participant

    I remember seeing on my wordpress dashboard, under the budypress plugin a link so i could bypass the login page and redirect me to the wp-admin login page… can someone help me qith this? i can’t login!!
    my website: https://cbppintranet.com/

    HELP!!!!

    #322872
    djsteveb
    Participant

    @niccrockett – thanks for pointing this out!

    I had never seen or noticed ‘“Activity auto-refresh” under Options in BuddyPress’ settings’

    I really hope some kind of slider for seconds.milliseconds can be added to the bp options!

    One of my hosts demanded that I add the ‘heartbeat control’ plugin from wp-rocket (free in the wp-repo: https://wordpress.org/plugins/heartbeat-control/ ) in order to keep my wordpress requests down – maybe this can help you in the short term(?)

    I found that having two tabs open with 8 wordpress sites being updated on same server was hammering it with requests from all 16 tabs every so many seconds or whatever – the admin-ajax ddosed my own server account and I did not realize it was a thing.

    surely some kind of javascript timer could pop up a button /tap to refresh/ kind of thing or something? and then the automated refresh can be turned off.. I’d like that.. think I’m gonna turn it off anyway.

    #322861
    maelscuttle
    Participant

    Since this is months old, I’ve already settled back then with the plugin “BuddyPress to WordPress Full Sync” which allows me to sync any arbitary xProfile fields to WordPress fields.


    @imath
    I can confirm by now this works as expected when following your steps. Without being able to verify anymore what my problem was back then, I have a feeling this must have been related to validation as sometimes BuddyPress provides zero feedback when something was wrong. In my current WordPress version (5.8.3), the Twitter field is expected to be a simple username (not full URL / @), other fields like Instagram are expected to be the full URL. So perhaps the issue was that some fields didn’t match validation criteria, so BuddyPress just silently swallowed the input?

    Cheers

    #322849
    djsteveb
    Participant

    when filling out register form it just refreshes the page – seems to fail with no error message I can see.
    How would I find out what is happening in the browser and on the server to debug?

    tried with turning off plugins and back to default theme,
    also did the list of things to check from here:
    (
    – check the WordPress settings allows account to be created (Anyone can register checkbox needs to be active) See: wordpress.org/support/article/settings-general-screen/#membership
    – check your permalink settings are using one of the pretty permalink options (not plain), see this documentation page wordpress.org/support/article/using-permalinks/#mod_rewrite-pretty-permalinks
    – check the activate and register actions are associated with a public WordPress page. You can find some inputs about it from this documentation page : codex.buddypress.org/getting-started/configure-components/#settings-buddypress-pages

    NB: the registration and activation pages are only displayed to users who are not logged in,
    )

    site is https://www.chatyolo.com/register/ – it’s kind of NSFW

    1. Which version of WordPress are you running?
    5.8.3
    2. Did you install WordPress as a directory or subdomain install?
    main directory
    6. Which version of BP are you running?
    9.2
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    301 Redirects, All in One SEO, AdRotate, Error Log Monitor, Forminator Pro,
    Slide Anything – Responsive Content / HTML Slider and Carousel, Wise Chat Pro, Wordfence Security,
    WP Activity Log, Smush Pro, Query Monitor,
    9. Are you using a standard WordPress theme or customized theme?
    tried both -happens with 2021 theme, zakra, and astra

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    2.6.9 – it’s turned off through and still issue

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page.
    was on legacy, switched to neavox

    Tried with firefox and chrome and different computers..
    had a few other profile fields – then removed them from the base signup and it still fails –

    Help greatly appreciated

    #322831

    In reply to: Help wanted!

    Mathieu Viet
    Moderator

    Just checked https://www.danskeosteopater.dk/find-en-osteopat/members/?s=anders & it seems to work as expected.

    If you’re talking about the search form displayed on the right side of your page, it’s not generated by BuddyPress. Have you tried to reach the plugin author of the BP Profile Search plugin there https://wordpress.org/support/plugin/bp-profile-search/ ?

    #322830
    Mathieu Viet
    Moderator

    Hi, I’m back 🙂

    I confirm this is working as expected. I’ve used this code to generate the Twitter WP Contact method: https://gist.github.com/imath/c634d9bfb575f128d76a25aaa76fc2e5

    Then, I’ve created a new xProfile field using the WordPress text field type, as shown in the below screenshot.

    xProfile create screenshot

    Once done, I was able to find the new input inside the user’s profile edit screen on front-end, see screenshot below.

    Profile edit screenshot

    When I’ve submitted my edits, the twitter link was saved successfully and on the user’s profile view screen, it is displayed as a clickable link:

    Profile view screenshot

    The same goes for the WP Dashboard profile, see below:

    WP Dashboard profile screenshot

    #322829

    In reply to: PHP 8 Compatibility?

    Mathieu Viet
    Moderator

    Hi,

    Just like WordPress PHP8 is ok with BuddyPress, see our PHPUnit corresponding GH action: https://github.com/buddypress/buddypress/runs/4734025743?check_suite_focus=true

    #322820
    oysteradministrator
    Participant

    I am using WOrdpress 5.8.3 I have BuddyPress 9.2.0 I am using Woffice theme
    I do get messages that BakeryBuid cannot update and I do not know if that is related to my problem

    On the home page banner I have a link to “Activity”. When clicked on it “loads community updates”. However it seems stuck on profile changes from 3 months ago and does not show recent topic changes

    In the Dashboard there is an icon for “Activity” and that too only lists activity up to 3 months ago.

    How do I refresh the list???

    #322807
    bikerflyeradmin
    Participant

    I have been trying to figure this out for quite some time. I really do not understand who, if anybody, would want to destroy every image uploaded to a website. It seems everyone would want nice images. I am running buddyboss, which is built on buddypress, and even the images uploaded to activity feed are absolutely destroyed. Changing wordpress compression quality does nothing. I makes absolutley no sense whatsoever.

    mguillaume
    Participant

    Hello everyone 🙂

    I wish to remove the whole title (header?) of posted activities of a specific user (algoflash)

    I am no developer. I can make use of CSS (child theme) or add something to functions.php, but barely more 🙁
    Any help would be greatly appreciated! Thank you!

    The website is https://algomuse.fr
    Wordpress 5.8.2 and BP 9.2.0

    How to remove title in activity stream but only for a specific user?

    Varun Dubey
    Participant
    jackster160
    Participant

    Hi everyone

    Anyone been able to re-create Tumblr features with BuddyPress?

    I like the idea of using WP over other platforms as the WYSIWYG editor is nice and the idea that users could have some choice over their profile themes.

    Thing is, we would like front end only dashboard for users and the ability to have re-blogging with quotes, front page with popular content, hashtags, search for content/hastags, user directory etc

    Frontend options looks to just be https://wordpress.org/plugins/wp-user-frontend/ ??

    Not sure how to do directory of users and popular content though.
    Any thoughts?

    #322696
    drerob0320
    Participant

    I am having trouble between the buddypress plugin and my avada wordpress theme. 1) My activity does not come up as a page. Since I am using Ultimate Membership Pro (UMP) plugin, I want to lock the activity stream page so only members have access. Currently it keeps giving me a 404 as my page title.

    #322686
    vanwyklm
    Participant

    Thank you for your reply.

    I want to create a Senior Developer Group; and a Junior Developer group.
    then I want to create two different environments where work is assigned to each group.
    I want to assign work by group and not by username.

    groups will be managed by Managers, tasks will be assigned by groups

    So I want to all group entries where WordPress only allow user entire

    any advice is appreciated

    #322635
    NicCrockett
    Participant

    I’ve figured out the BuddyPress plugin is overloading my server. When I go live this will also affect SEO due to almost triple page load time, even on pages that aren’t BuddyPress related. I narrowed the issue down to a constant call of the admin-ajax.php page in WordPress. This can be turned off by the “Activity auto-refresh” under Options in BuddyPress’ settings. Once turned off, page load decreased significantly and it’s within Google’s acceptable load time. The problem with doing this, is users don’t get updates. They’d have to refresh the page to see updates and they’d have no idea when new updates were added.

    Is there anyway to fix this issue with this switch on? I’m overloading the shared hosting plan while not live and only three users active.

    I thought of one way that doesn’t fix the issue but gives the site owner more leeway. Instead of an on/off switch for the “Activity auto-refresh” setting, can there be a textbox for the site owner to enter refresh milliseconds? The on/off switch can still be present, but for those of us that need more control over this setting using a milliseconds value would give the user somewhat real time updates, meet Google’s page load requirements, and won’t overload shared hosting plans.

    Here’s what the site is running. I’d rather not give the site link out on an open forum and destroy my hosting plan.
    WordPress Version: 5.8.2
    BuddyPress Version: 9.1.1
    Hostinger Business Account and this is the only site on this account so far.

    Thanks,
    NicCrockett

    #322625
    greenhope
    Participant

    Hi everyone.
    I have been looking around the web for several days, but I have not found anything that satisfies me.. As the title suggests, I would like “my” users to have the ability to upload and use animated avatars.
    At the moment it is not possible because when a user tries to upload an animated gif, they are asked to crop it and there is no way to skip image cropping.
    Also the Gravatar service does not support animated avatars.. or so I have read around the web.
    As silly as it may seem, I find it highly limiting, speaking of user experience, not to be able to upload an animated avatar.
    Can someone help me?

    In case there is no way to load an animated gif without it being resized, is it possible to add a field in the front-end user’ profile where he can insert a link to an image like in the phpbb forums?

    my WordPress is updated to version 5.8.2
    my buddypress is updated to version 2.1.1

    Link to my site MRLab

    I don’t use child theme.

    In case I have created a duplicate topic, I apologize in advance.
    In my defense my English is not the best and I haven’t seen any other open topics about it.

    Thanks in advance to anyone who will help me and Merry Christmas to everyone!

    #322611
    wackao
    Participant

    The answer is cached page. This is a typical issue with WordPress sites. That in order to login the page load request must bypass all cache and hit the server. The server then reads the cookie and logs the user in.
    We create a framework ( going live soon on wp.org ) for BuddyPress that works using JWT tokens and without cookies. The result is that is perfectly cacheable system which even works with serverless applications.

    #322579
    dugost
    Participant

    In case this is helpful for anyone, I was able to get an Avada child theme to enqueue BP Nouveau styles conditionally based on code detailed here placed in my child theme’s functions.php file and making sure BP Nouveau’s /css/ directory sits in the same directory.

    function register_nouveau_stylesheet() {
        wp_register_style( 'bp-nouveau-enqueue', get_stylesheet_directory_uri() . '/css/buddypress.min.css' );
    }
    add_action( 'init', 'register_nouveau_stylesheet' );
    
    function conditionally_enqueue_nouveau_stylesheet() {
        // only enqueue on members-directory page slug
        if ( is_page( 'members-directory' ) ) {
            wp_enqueue_style( 'bp-nouveau-enqueue' );
        }
    }
    add_action( 'wp_enqueue_scripts', 'conditionally_enqueue_nouveau_stylesheet' );
    

    Unfortunately, logged in users will end up loading the Nouveau stylesheet twice so I’ll have to update this code further so it checks for login status and possibly user role. Hopefully, I can find a way to conditionally enqueue BP’s styles for the directory only as well. I don’t need those styles loading site-wide!

    #322547
    Fusiondesigner
    Participant

    I’m getting the same error on my site. It doesn’t send activation emails. Using the code above worked, but now it’s sending a basic vanilla email with <wordpress@domain.com> as the subject and went to spam. It’s also not sending password reset emails at all.

    #322533
    wackao
    Participant

    Following above fix, will start sending textual mail, not HTML emails.
    This plugin https://wordpress.org/plugins/vibe-buddypress-to-wp-mail-fix/ would use WP Mail and send HTML emails.

    #322522
    greenmeanie
    Participant

    https://github.com/SparkPost/wordpress-sparkpost/issues/32

    So it turns out, there is a very quick & easy solution. buddypress developers already made it possible to ignore their own implementation of wp_mail and fallback to wordpress’s default wp_mail (which will allow sparkpost plugin to do its magics). If you add the following snippet (functions.php of your theme or similar), it should just work.

    add_filter(‘bp_email_use_wp_mail’, function() {
    return true;
    });

Viewing 25 results - 851 through 875 (of 22,686 total)
Skip to toolbar