Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,976 through 13,000 (of 73,986 total)
  • Author
    Search Results
  • #259583
    danbp
    Participant

    hi @sherissa_r,
    i asked on Slack where @hnla answered that “clearly something is wrong”. I opened a ticket, just in case of.

    Now we’ve to wait a little moment the time a dev can investigate this.

    #259581
    danbp
    Participant

    try by adding $retval['per_page'] = 50;

    Codex reference

    Using bp_parse_args() to filter BuddyPress template loops

    #259577
    danbp
    Participant

    Hi,

    can be done from within the language file, if you want the message to be full part of the success message.

    The original string is here: bp-templates/bp-legacy/buddypress/members/activate.php:43
    Your account was activated successfully! Your account details have been sent to you in a separate email.

    or if you want to show persistent instructions, you can use one of the hooks available on the activation page: bp-templates/bp-legacy/buddypress/members/activate.php

    This will need a function like these:

    function my_registration_message() {
    echo 'My message text';
    }
    add_action( 'bp_before_activate_content', 'my_registration_message' );

    You can use same function to show a custom message on the register page, in wich case you use one of the existing hook in bp-templates/bp-legacy/buddypress/members/register.php

    For ex.
    add_action( 'bp_before_register_page', 'function_name' );

    Customizing Labels, Messages, and URLs

    #259576
    danbp
    Participant
    mdarcangelo66
    Participant

    Hi, I need to know if there is a code or anything to advise the user after that he submit the registration ( so past the complete registration step ) that an email with a confirmation link has been sent in order to activate the account ect. because at this stage once the registration has complete it is usually redirect to the main page without further notice, as a confirmation email can go into the spam ect. so a text to remind of what to do or to check would be beneficial and so common really…

    Thanks

    Wordpress 4.5.4 | Buddypress 2.6.2

    #259567
    oxnard
    Participant

    I installed bbpress und buddypress and changed the topic name of bbpress to the german word “thema” afterwards so now all the activities from the forum have a wrong link.

    here is an example.
    http://www.soul-surfers.de/mitglieder/stephan-custom-waves/

    there is a link in the activity
    http://www.soul-surfers.de/forum/topic/wellengemalde/

    but it must now be http://www.soul-surfers.de/forum/thema/wellengemalde/

    Under tools I used the option repair activity stream, but nothing changes.

    Does anyone have an idea?
    Thank you
    Oxnard

    staxracing
    Participant

    Nevermind, got it working.
    For anyone having the same problem, use

    function jptweak_remove_share() {
    	if ( is_buddypress() ) {
    	    remove_filter( 'the_content', 'sharing_display',19 );
    	    remove_filter( 'the_excerpt', 'sharing_display',19 );
    	    if ( class_exists( 'Jetpack_Likes' ) ) {
    	        remove_filter( 'the_content', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 );
    	    }
    	}
    }
    add_action( 'loop_start', 'jptweak_remove_share' );
    #259554
    danbp
    Participant

    Hi,

    you’re on the BuddyPress support forum where we can’t help for third party plugins.
    If you have questions related to bbPress (if you use this plugin), you have to ask on their support.

    For BuddyPress for Sensei plugin or WC Sensei, you can check the doc and/or ask on the plugin support too.

    danbp
    Participant

    Hi,

    by reading the first topic, it sounds like you try to use more than one child theme !

    I already have activated my other child theme

    If it is the case, it’s not the way to proceed. 😉

    1) You should have only one child-theme activated.
    2) in this child, you add a folder called buddypress.
    3) if you need to modify some BP templates, you copy the original from wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/ into the child BP folder.

    Example of what you should have:
    wp-content/themes/XYZ theme
    wp-content/themes/XYZ-child/

    Let’s say you want to modify BP’s register page.
    wp-content/themes/XYZ-child/buddypress/members/register.php
    or you want to modify the profile header template
    wp-content/themes/XYZ-child/buddypress/members/single/member-header.php

    And that’s it ! The only thing you have to do is to pick the right file and add it to the child by respecting the original path who starts at: /buddypress/path/to/file.php

    Inside the template file, yo can manipulate html tags and find different action hooks ( do_action( 'something' ); ). Take care to not rename or remove the existing class/ID names whithout knowing what you do.

    In bp-custom.php, you can manipulate BP’s behave by adding custom functions.

    In the child-theme style.css, you manipulate whatever related to your theme layout – for the entire site, including BP or other plugins.

    And as all this is done via the child, anything will remain after any update of BuddyPress, your original theme, WordPress or plugins.

    Reading actively the forum will bring you other answers, tips and tricks.

    insearchofasolution
    Participant

    Thanks @r-a-y. I need to do a little bit of both. I have tried to do it the way as in the article, unfortunately that doesn’t work for me. I do everything as described and tried it with and without placing add_theme_support( ‘buddypress’ ); in functions.php and nothing. I am using a child theme, can it have to do something with that?

    If you are talking about code snippets, you can use your theme’s functions.php file or wp-content/plugins/bp-custom.php.

    Thanks for the above!!

    #259548
    danbp
    Participant

    [Mod] changed title to something more explicit as a useless “Please Help…….Urgent !!!!” on a support forum.

    https://buddypress.org/support/topic/when-asking-for-support-2/

    The urgent is done, the indispensable is under way. For miracles, allow time.

    Please wait, I think.

    #259547
    danbp
    Participant

    Hey, do you mean this ?

    #259540
    Slava Abakumov
    Moderator

    The only option is to use CSS (in style.css) in your child theme to modify that. Or some plugins, that give ability to apply styles without modifying files (Siteorigin CSS).

    #buddypress #register-page label { 
        font-size:120%;
    }
    #259539
    Slava Abakumov
    Moderator

    So far there is no such plugin.

    You can try to dive into bp_get_new_group_invite_friend_list filter, and you will need to rewrite /buddypress/groups/single/send-invites.php template.

    So quite a lot of work.

    #259537

    In reply to: How to allow html tags

    danbp
    Participant

    You already got an answer to this question here:
    https://buddypress.org/support/topic/tinymce-for-replying-to-messages/#post-259368

    Check $allowedtags and add $allowedtags['span'] = array( 'style' => array () );

    May work…or not.

    Closing this topic as unavailing.

    #259534
    danbp
    Participant

    No, nothing like that. This can only be achieved within site admin. And by default a group mod is a simple subscriber which has no access to group members administration.

    The first option is to promote mods to group admin, and in this case he can from front-end, kick/ban user, promote or remove users and nothing else.

    The other option would be to give them a WP role who let them access to group members admin and evtl. using a plugin to block their access to all other admin parts… (ie. user role editor)

    In addition, you could also get some dev’s opinion to this…
    https://buddypress.trac.wordpress.org/ticket/5543
    https://buddypress.org/support/topic/how-could-a-group-moderator-edit-group-details/

    reusmith990
    Participant

    Please, I just installed a plugin called “BP Profile Cover” and immediately I got this error…I’ve trying to fix it but to no avail.

    Fatal error: Call to a member function get_primary() on a non-object in /home/studentarrive/public_html/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 2471

    #259531
    danbp
    Participant

    Perhaps this one may work: <a href="'. bp_get_loggedin_user_link() .'">View my profile</a>

    Reference

    bermudastream
    Participant

    I would like to keep the activity stream short – 7-10 updates only. Where can I set the number of activities to return?

    Thanks
    Mark M.

    Site-Wide Activity

    Buddypress Version 2.6.2
    WordPress 4.6.1

    #259520
    danbp
    Participant

    Hi,
    Shane’s answer is related to the BP way to get a user name inside a redirection. wpF use probably a similar method, but certainly also his own function(s) for that. You have to find out how it does. Unfortunately, this plugin doesn’t provide documentation at the moment.

    Accordingly to wpForum support, there is still a button to wpforum on each profile. If you have difficulties to tweak the default behave, you have to ask for on their support.

    https://wordpress.org/support/topic/buddypress-compatibility-plans/

    tatiana_k
    Participant

    I’ve got a problem after updating my Buddypress.
    I deactivated BP plugin.
    Then uploaded latest WP and BP versions.
    Then updated WP. It went smoothly.
    Then tried to activate BP and got the error:

    (Site) is currently unable to handle this request.
    HTTP ERROR 500

    I deactivated ALL plugins (deleted or renamed files via ftp) and use standard WP theme named Fourteen.
    The site works fine but when I try to reach Admin Panel, I get HTTP ERROR 500.

    I changes line

    define(‘WP_DEBUG’, false);

    to

    define(‘WP_DEBUG’, true);

    and then got the following error:

    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 86 bytes) in /path-to-domain/wp-includes/wp-db.php on line 1837

    What can be the problem?

    WP v. 4.6.1
    BP v. 2.6.2
    I didn’t check what the previous version of BP was. Can it be the issue? Should I have installed all updated step by step?
    No plugins.
    No changes in any files.
    No changes in WP theme Fourteen.
    Everything worked fine before I reactiveted BP plugin.

    I don’t think server, nginx, etc. is a problem because everything worked fine and the site continues to work fine except for the Admin Panel which doesn’t work at all.
    When I deactivate BP plugin, the admin panel works fine as well.

    Does anyone have any ideas on what can be done.

    #259513
    morning0dew
    Participant

    __________________________
    WordPress 4.6.1
    Vogue 1.2.00 theme
    Buddypress 2.6.2 
    http://www.propertygrids.com
    ___________________________

    I wanna build that web as a website that collect property agents . All people that will visit the website are :

    1. I’m
    2. property agents that have property listings , wanna promote their listings and make some co broking with the other agents
    3. visitors that search property by category and location & search professional property agents that near them

    Some features :
    1. Property agents can register,login,create groups , posting listings , make friendship, etc that almost like facebook . And also can write and read article in my website

    2. All Property agents can register & posting their listings but only paid members that can :
    -view detail contact of the other agents like phone numbers,email,Bbm Pin
    -send & accept message to the other property agents
    -send and read messages to the groups

    3. Listings of property agents must have category : home,land,apartment,etc that can viewed on homepage

    4. Listings of property agents must be viewed on homepage by newest listings

    5. Visitors can search listings by category & by location from homepage

    6. Visitors can view some properties but must be paid member to know property agents contact that have the listing & send message to property agent

    What plugins that must i use ?
    Now im using buddypress and think to integrate it with woocommerce

    Morning0Dew

    mbfit
    Participant

    Hello posting this question again, hopefully all is well and I’m informative as much as I can be.

    WP 4.6.1
    bbpress 2.5.10
    buddypress 2.6.2
    rtmedia 4.1.6

    WP installed as directory in root, no sub-directory
    Tested with no plugins other then the ones listed above.
    Custom theme SweetDate
    No core files changed other than a landing page changed in wp-config.php
    which was this:

    /**
     * Change BuddyPress default Members landing tab.
     */
    define('BP_DEFAULT_COMPONENT', 'profile' );

    I use bluehost version that has an installed WP

    I’ve inquired this issue with the SweetDate Theme support forum and they told me to ask
    about it here.

    My site is not live yet.

    I hope that these two questions are at the right place.

    I just have 2 concerns:

    1. When creating a Group there is the option to post texts, pics, etc. If it is a long post and then it is submitted, the post comes with a ‘Read More’. When I click on it it opens up to a new page. From there if I hit the back button the post is gone. If I remove the Read More using:

    .activity-read-more {
        display: none !important;
    }

    then the text field is limited to about 30 words. Is there a way to remove the Read More and just have it as an open regular forum where there isn’t a need to expand or have it go to another page?
    I’ve shared images labeled GroupPost 1to4

    2. The other concern I have is in regards to uploading a Cover Photo for the User Group. If I post an intro text and it winds up being lengthy, the text expands the image. That seems odd. Wondered if this is how it is or on my end. Is there a way to have the text separate and not laid out on the Cover Photo? Would rather have the Cover Photo as a stand alone.
    I’ve added an image COVER-TEXT

    Thanks.

    I realize the photos are a little small.

    #259508
    Renato Alves
    Moderator

    I’d say the answer to this question lies in the LMS plugins out there… Each one has its own approach to integrate BuddyPress with them.

    Also you will be able to get a look at how the pieces integrate together.

    #259422

    In reply to: Page not found message

    danbp
    Participant

    After you setup BP pages, you should activate pretty permalinks.

    Installation

    All BP pages should be empty. Just a title and no associated template or model.

Viewing 25 results - 12,976 through 13,000 (of 73,986 total)
Skip to toolbar