Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 801 through 825 (of 31,071 total)
  • Author
    Search Results
  • #322701
    VibeThemes
    Participant

    If the activities are recorded in the database, there is no reason it would not show up in the activity section of the user.
    The only possible reasons are caching or the theme customised the activity tempalte.

    Try switching to a default theme also clearing your cache (Object cache to be specific).

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

    Ryoma
    Participant

    Hi there,

    I have a problem and want to know hoe to solve it.

    <Group – Invite friends> → works well and hasn’t issue
    OK
    1) check the invite friend
    2) Load a invite friends list in right part.
    ————————————————————————————————–
    <Create New Group – Invite friends> → has issue
    Error
    1) check the invite friend
    2) Don’t load a invite friends list in right part.

    <Tutorial video>

    [video src="https://schrew.com/wp-content/uploads/2021/10/2021-10-09_12-29-59.mp4" /]

    I changed my theme to default and stop other plugin.
    But this problem is occur.
    So I think the problem is depends on Buddypress Code.

    Thanks.

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

    #322622

    In reply to: Video width incorrect

    nahsye84
    Participant

    I just added the background video on my blog but its width was very suitable with the website theme you can contact to any expert to solve this video size issue.

    #322610
    wackao
    Participant

    The only other possibility is “human” spam which can not be caught by any software ( unless it s AI Powered ). What you can do is strip all HTML and links, so the spammers would lose all interest in your site.

    add_filter('bp_before_groups_edit_base_group_details_parse_args',function($args){
    		$args['description'] = wp_strip_all_tags($args['description']);
    		return $args;
    	});

    p.s : In our theme we already added the restriction on “Who can create groups”.

    wackao
    Participant

    It would be a mix of BuddyPress and BBPress. The main challenge is that it has to be fast, without page loads. We already have the PWA framework on BuddyPress and are releasing new themes. Built on ReactJS , HeadLess Social network, super fast community framework. [ See video : https://www.youtube.com/watch?v=lLDs4Ue1vzU ]

    Current BuddyBoss is legacy just like Buddypress. Working with Ajax calls , jQuery.

    #322587
    dugost
    Participant

    I’m not a coder so I’m sure this is pretty obvious to a lot of people but this seems to do the trick:

    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 ( ! current_user_can( 'update_core' ) && is_page( 'members-directory' ) ) {
            wp_enqueue_style( 'bp-nouveau-enqueue' );
        }
    }
    add_action( 'wp_enqueue_scripts', 'conditionally_enqueue_nouveau_stylesheet' );

    The inclusion of ! current_user_can( 'update_core' ) && in the if statement prevents the stylesheet loading twice for the admin. Other user types and logged-out visitors will see the stylesheet loaded for them since Avada child theme’s currently can’t handle this.

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

    #322578
    dugost
    Participant

    Avada support said “The Avada theme does not have Nouveau theme from BB press integrated. We do have a developers item for it and I have asked our dev to push for its development.”

    Is there a method to enqueue that stylesheet specifically on the directory page?

    dugost
    Participant

    I have BP v.9.1.1 installed under WP 5.8.2 and the site in progress is using a subdomain with its directory at the root. The directory is named as per the subdomain (i.e. subdomain.domain.tld). Unfortunately, I’m unable to share the URL.

    I’ve been wrestling with this issue for a while now. When logged in as the admin and viewing the Members Directory, the bp-nouveau-css styles (…/buddypress.min.css?ver=9.1.1) load just fine but they won’t load when logged out. This is happening specifically with an Avada child theme. I have reached out to Avada support but I’m not holding my breath for a solution from them.

    I cloned the site and began by activating the Twenty Twenty One. Like the original site, bp-nouveau-css loaded just fine when logged in or out. This was also the case for Twenty Twenty One child or the Avada parent themes. However, activating the Avada child theme prevents that stylesheet from loading.

    In my Avada child theme, I’ve only added the buddypress/members/ directories so I could make some tweaks to the listings and profile pages. The child theme’s style.css relies on the Nouveau template CSS in the BP plugin directory. With its styles missing, the page falls apart.

    I also have some custom functions in plugins/bp-custom.php but none of those deal with stylesheets.

    I’ve also tried placing the CSS folder from /buddypress/bp-templates/bp-nouveau/ in /avada-child-theme/ as a test. When logged in, bp-nouveau-css loaded from the child theme. When logged out, other BP styles were loaded from the plugin directory, not the child theme, and it still refused to load bp-nouveau-css.

    Can I add a function somewhere to enqueue the styles I need since the child theme won’t do it on its own?

    I’d actually like to add a function to only load BP’s CSS and JS where necessary since only a couple of pages use BP. I’ve found this SERT Media article but comments suggest the code won’t work with Nouveau.

    I’d greatly appreciate any help with this issue. Cheers.

    csemlak
    Participant

    Using the aardvark theme:

    On the front page:

    The Login/Register buttons on the top right corner.

    1. I am having problems with the “Register” Button/page – taking a very long time to load, sometimes it times out.

    2. went into buddy press to change the Registration page to something different to see if it would speed up in order to test it out.

    3. I switched it to my “contact” page temporarily and found it loaded immediately.

    4. I went to switch it back to the Buddy press register page that I am assume was created by buddy press.

    5. Now when I click the “register” button. It takes me to the “contact” page. Then when I am on the contact page…when i click register, it eventually will take me to the right page, The “register” page (by buddypress)

    This is a major problem. Can you please help me? I have a big event and I need people to be able to register on the site.

    Let me know if you need any more information, I have no clue how to fix this.

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

    #322504
    jobinelenjical
    Participant

    BuddyPress version – 10.0.0-beta1 or 9.1.1(stable version)
    Theme – Twenty Twenty or any theme
    Wordpress version – 5.8.2

    When I change Cover Image it is working fine.
    But when I change Profile Photo it is giving error – There was a problem cropping your profile photo.

    I am not able to find out why it is giving this error.
    Please help urgently

    #322500
    wackao
    Participant

    It is really easy to set it up like this. Default BBPress theme.

    #322488
    windhillruss
    Participant

    Hi David, thanks for looking at this! From what I can see there isn’t a specific register.php but the Theme (in my opinion) has taken your excellent Buddypress to a whole new level by some very clever and minimalist styling. The developers are incredibly responsive to user enquiries and what I will do is drop them a support email enquiring as to their preparedness for V10 and I’ll let you know what they say! Thanks.

    #322486
    David Cavins
    Keymaster

    Thanks @windhillruss for your feedback. I’m not able to test the Beehive theme (because it is a paid theme). It sounds like the theme has its own version of register.php which will need to be updated. Can you have a look and let me know if the theme does contain a register.php file?

    We’ve introduced a new helper function, bp_allow_access_to_registration_pages(), to figure out whether the registration page is accessible that the developers will want to start using (if BP>=v10):
    https://github.com/buddypress/buddypress/blob/master/src/bp-members/bp-members-template.php#L2960

    Regarding the login form, here are some examples of the filters we used to add “request membership” links to the various WP login forms: https://github.com/buddypress/buddypress/commit/2099c877aaa539439b2c6255db6872af2db85a11

    Thanks again for your testing! It’s greatly appreciated! If the Beehive devs care to share some of their code to a Trac ticket, I’d be happy to take a more specific look.

    #322464
    Mathieu Viet
    Moderator

    Hi @windhillruss thanks a lot for your feedback I believe it’s just a matter of theme template updates. @dcavins can you have a look at it?

    #322459
    windhillruss
    Participant

    Hi, Thanks for the opportunity to test v10. When the Option for Admin to approve requests is active and ‘Allow anyone to Register’ is disabled, the Registration form says ‘Member Registration is currently not allowed’ Using the Beehive Theme which styles Buddypress. Similarly, Beehive’s Ajax Login Modal says ‘Sign-Up not allowed’ It appears like a Catch22 situation. Is there something I’m missing? Thanks.

    #322450
    Anonymous User 18296540
    Inactive

    @vibethemes

    Yes. “description is added in the profile field and still does not display”.

    #322429
    wackao
    Participant

    this is from buddyboss , buddypress does not have it 🙂 , our theme WPLMS has similar controls like this : https://prnt.sc/22q00dh , however this is very specific to the buddyboss theme, contact their support or migrate to core buddypress 🙂

    #322419
    wackao
    Participant

    BuddyBoss is not BuddyPress. Kindly contact BuddyBoss support or simply switch to BuddyPress and use a BuddyPress theme like WPLMS or Kleo.

    I think you are confused, forum by default do not have cover images. You have Group forums which have cover images coming form the group. The cover image should be enabled in groups from WP admin – Settings- BuddyPress – options

    #322416
    wackao
    Participant

    this is available by default in our theme WPLMS. Should be a control and users should not be required to add code for such simple things

    #322404
    jpp22
    Participant

    Hello,

    New to the forum, been searching everywhere and I do not see this question asked anywhere.

    I am on:
    – WP 5.8.2
    – BuddyBoss Theme 1.8.1
    https://cnftcentral.io

    When groups/Forums are created By Members, the cover Photo for the Forum is missing…

    If you visit my site you will notice that all forums do have a cover photo but that’s because I went as an admin on the forum post and added the Featured Image manually. I really cannot go & add a Featured image each & every time a user starts a forum…

    Is there a way around this so the user cam apply a cover photo to, not only the group but, the forum as well? I really cannot figure this out, I have tried everything!

    Thanks in advance!

    #322332
    meitalaaa
    Participant

    I wrote the following function, but i still can’t create a group. I’ve made sure that the function is getting called, so that is not the issue

    function start_a_new_group($profile_id, $status) {
    if ( !function_exists( ‘groups_create_group’ ) ) {
    require_once ‘/bp-groups/bp-groups-functions.php’;
    }

    $defaults = array(
    ‘group_id’ => $profile_id,
    ‘creator_id’ => get_current_user_id(),
    ‘name’ => ”,
    ‘description’ => ”,
    ‘slug’ => ”,
    ‘status’ => $status,
    ‘enable_forum’ => 0,
    ‘date_created’ => bp_core_current_time()
    );
    return groups_create_group($defaults);
    }

    Wordpress version 5.8.2
    Buddypress verion 9.1.1
    Theme is Twenty Twenty

    Any ideas?

Viewing 25 results - 801 through 825 (of 31,071 total)
Skip to toolbar