Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,001 through 12,025 (of 69,129 total)
  • Author
    Search Results
  • #244872
    modemlooper
    Moderator

    Doubt there is a plugin this specific. I’m not sure the specifics but are you saying anyone can review a woo product if they are not logged in?

    BuddyPress doesn’t have a specific method for logging in its the same login as WP.

    You might try this http://stackoverflow.com/questions/24747095/woocommerce-require-registration-to-buy

    #244871
    modemlooper
    Moderator

    Read this on overriding BP templates in your theme. https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    Basically you’d copy single.php to your theme/buddypress/members/single/messages/single.php keeping the same folder structure

    modemlooper
    Moderator

    hook into the filter bp_core_signup_send_activation_key and send a different email message linking them to the form you want them to fill out. On your form submission you can then do the activation link

    		/**
    		 * Filters if BuddyPress should send an activation key for a new signup.
    		 *
    		 * @since BuddyPress (1.2.3)
    		 *
    		 * @param bool   $value          Whether or not to send the activation key.
    		 * @param int    $user_id        User ID to send activation key to.
    		 * @param string $user_email     User email to send activation key to.
    		 * @param string $activation_key Activation key to be sent.
    		 * @param array  $usermeta       Miscellaneous metadata about the user (blog-specific
    		 *                               signup data, xprofile data, etc).
    		 */
    		if ( apply_filters( 'bp_core_signup_send_activation_key', true, $user_id, $user_email, $activation_key, $usermeta ) ) {
    			bp_core_signup_send_validation_email( $user_id, $user_email, $activation_key );
    		}
    
    #244863
    danbp
    Participant

    Hi,

    try BP auto group join

    This question was asked many times in the past. Search the forum. Ie.

    Auto join group based on role

    how to add new members to groups automatically?

    #244861
    sharmavishal
    Participant

    @danbp thanks for your reply. its highly appreciated. I understand its bit unnecessary.

    Am using a custom home page via BuddyPress Groups Extras. So on my site the home page for groups is gpages which doesnt have a slug in the URL which is great.

    now my second tab is “Home” which i renamed to “Activity”. This is also fine. But the slug of Activity page is “home”. so when i click on the activity tab the URL in the broswer shows group/name/home.

    I believe the previous versions of BP the home page was actually named as Activity right?

    the only way i can fix this is via hacking the core BP file bp-groups-loader.php

    // Add the "Home" subnav item, as this will always be present
    			$sub_nav[] = array(
    				'name'            =>  _x( 'Activity', 'Group screen navigation title', 'buddypress' ),
    				'slug'            => 'activity',
    

    Thanks once again

    #244857
    Henry Wright
    Moderator

    Whilst notifications is a BuddyPress component, it’s actually bbPress that handles this particular notification via their bbp_buddypress_add_notification() function. If you pass the following link to the bbPress guys, they should be able to take it from here.

    Ref: https://github.com/ntwb/bbPress/blob/master/src/includes/extend/buddypress/notifications.php#L98

    If you need anything else just shout.

    #244855
    Henry Wright
    Moderator

    3 reports in 3 weeks sounds as though there could be an issue here. Can you open a ticket on Trac?

    https://buddypress.trac.wordpress.org/

    You can use the same username and password that you use here in the forum to log in. Please provide as much background info as you can regarding your setup.

    #244852
    VeeLow
    Participant

    According to bbpress, this is a BuddyPress thing. They don’t think notifications hooks up with bbpress subscriptions.

    In case it wasn’t clear, I’m talking about “Notifications,” the BuddyPress feature. The little pop-up number balloons. Not emails (to which one can subscribe). When I search support forums I see that people use these terms very loosely, but I was trying not to do that!

    #244845
    deadbeat007
    Participant

    B) new activity items going forward

    The premise of my client’s site is basically Twitter, but for quotes. A user can enter a quote that their friend said, then tag their friend (assuming the friend has an account) and attribute the quote to them.

    The quote will then appear in the activity stream, along with the tagged user’s avatar and username.

    I figured BuddyPress would be my best bet for this, since it allows users to add friends and @mention other users, but now I’m a bit lost as to how to manage what my client it looking for.

    #244834
    Henry Wright
    Moderator

    There’s currently also 29 themes in the WordPress Theme Dir tagged “BuddyPress”. See here. I’m not sure if any of these will be different to the themes you’ve seen already at BP Inspire, but it’s worth taking a look 🙂

    #244831
    Henry Wright
    Moderator

    Hi @julia_b

    http://www.bpinspire.com/ might be useful to you. It showcases lots of popular BuddyPress websites and themes.

    #244824
    danbp
    Participant

    Check for group_creator.

    bp_is_group_creator

    #244823
    danbp
    Participant

    IMO, you’re strugling with something unnecessary.
    The group home tab shows the group activity by default and URL when on this page is domain.com/groups/groupname/

    Groups

    Your function is ok and it is not necessary to add /activity/ to the original slug. The action name for group activity page is home. If you add it manually to ‘domain.com/groups/groupname/home’, home will be stripped by default. And if you change home to xyz, you’ll get a 404 error.

    Renaming the tab to a more accurate string is possible of course. Changing the group activity URL isn’t.

    function my_bp_groups_default_tab() {
    global $bp;
    
    $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['name'] = 'Group Activity';
    }
    add_action('bp_groups_setup_nav', 'my_bp_groups_default_tab');
    #244791
    Henry Wright
    Moderator
    #244788
    danbp
    Participant

    Hi,

    deactivate any plugins except buddyPress and follow the BP’s install guide .

    #244787
    danbp
    Participant

    Did you activated permalinks ? Is mod_rewrite on in htaccess ?
    Details here.

    #244785
    nagarjunsarathy
    Participant

    Hi,

    I am facing the same issue.

    My WordPress version- 4.3.1
    BuddyPress version- 2.3.3
    Theme- Twenty Thirteen
    Plugins used- Branded Login Screen, Register Plus Redux.

    As an Admin, able to edit my profile but not able edit profile as an user.
    And all components of BuddyPress is throwing 404 error.
    Can anyone please help me as I am new to this field.

    Thanks

    #244784
    Skvirly
    Participant

    Hi @danbp
    Bad news. I deactivated all plugins and activated WP theme 2015. All works well. I only activated BP 2.3.3. and the activity stream already gives me exactly the same error:
    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 7680 bytes) in xxx/wp-content/plugins/buddypress/bp-core/bp-core-functions.php(147) : runtime-created function on line 1

    Seemingly I am the only one with this problem. Should I proceed to a completely fresh install ?

    #244782
    danbp
    Participant

    Hi @skvirly,

    unfortunately, i think nothing about your issue, except that it seems that something is interfering somewhere.

    The best practice in such case is to start from the begin.
    Activate WordPress and 2015 theme. Check that anything is correctly working.
    Then activate BuddyPress. Re-check.
    Then bbPress. Re-check.
    Then, activate Sweet Date theme. Re-check.

    If all is Ok, and only if all, you now have a base install of WP/BP/bbP and your theme working correctly. There shouldn’t be any notice or warning at this stage. If you got one, it’s a probleme with the theme.

    If this is ok, you add one plugin. And re-check. This normally make things easier to debug.
    As it is apparently related to xprofile, it could be possible that if you use contactform plugin for your register page, that something is wrong with that plugin. But this is only a hypothesis, not a certainty.

    Note that php memory_limit of 128 mo is enought to run a script, when BP is running on a single install. Aside, note also it’s default for php 5.6 version.

    Happy debuging.

    #244781
    unwiredtech
    Participant

    Update:

    I tried to disconnect the plugin and the uploader is now available. However my customization and custom loop is no longer applicable. I really like the plugin but sadly I need to let it go.

    I will this one
    https://github.com/WebDevStudios/WDS-BuddyPress-Project-Framework

    #244763
    Skvirly
    Participant

    @danbp : I am checking my error logs generated by the server. I have a large amount of
    “PHP Notice: Undefined offset: 1 in /hermes/bosoraweb076/b2865/ipg.skvirlcom/wp-content/plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php on line 126”

    Can it be related to the problem or is this something else ?

    #244762
    Henry Wright
    Moderator

    Hi @damland

    Thanks for the report. Bug reports can be opened on Trac:

    https://buddypress.trac.wordpress.org

    The username and password you use here in the forums will work there too.

    #244760
    DAM
    Participant

    @shanebp @henrywright
    it’s a buddypress bug, I’ve added a fix here: https://buddypress.org/support/topic/bug-report-class-bp-attachment-avatar-php/
    hope it will be included on next update (soon)

    #244735
    bluerockerr
    Participant

    Just a quick follow up, I removed the “BuddyPress Members only” plugin and added a different one to restrict page access and everything works now. It seems the issue was with the plugin.

    #244732
    Skvirly
    Participant

    @danbp: I already had done the deactivation/activation procedure. It was inconclusive because it depended on which plugin I would activate first which one would create the error.

    The debug mode indeed gives a clue. The error message in the activity stream in the dashboard is:
    “Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 7680 bytes) in …/wp-content/plugins/buddypress/bp-core/bp-core-functions.php(147) : runtime-created function on line 1”

    I already had asked Ipage to up my memory limit and they had increased it to 128MB. Seemingly even that is not enough. I am surprised how much memory is needed with this little plugins. How much should I ask for now knowing that I still want to include Paid Memberships Pro ?
    Thank you for your support !

Viewing 25 results - 12,001 through 12,025 (of 69,129 total)
Skip to toolbar