BuddyDev

Search

Replies

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Hide the BP type box and MPP on Website Activity Page #47438
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: BP Activity links abbrevation issue #47410

    Hi Ravi,

    Thanks for the code. Before I test it I have two little questions:

    1. do I need to add the code to the bp-custom.php file?
    2. Does when applying the code the “Read More” link disappear and the whole post is showing even when it is a large post or will there still be the “Read More” button to maximise the post?

    Thanks for your short feedback.

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: BP Activity links abbrevation issue #47398
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Spamers #47376

    Yo hi,

    I am still fighting these Spammer Bots but it’s a little bit better now by applying different technics, anybody has a good suggestion for a honeypot plugin that works well with Buddypress?

    Thanks for your input.

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497

    Hi Brajesh,

    That’s awesome, it works exactly how I wished! Finally this issue is resolved, a user has not come back because the user said she doesn’t know how to get back to her profile, it was also a cashing problem that the left sidebar did not refresh and which I could resolve in the meantime. So now the website looks much more professional.

    Thanks for the great work!

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Remove overlapping link on -forgot password- page #47347
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Remove overlapping link on -forgot password- page #47344

    Hi Brajesh,

    I would like to renew BuddyDev membership, could I please have a little discount code?

    Thank you.

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Remove overlapping link on -forgot password- page #47342

    Hi Brajesh,

    It worked that’s great 🙂

    I figured out that due that users compare social media with the big ones like Facebook, Twitter etc. and when they recognize that a site is not as professional as the big players, then they don’t come back again.

    Thank you!

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497

    Hi Brajesh,

    Sorry I’m not a php programmer, could you please just tell me how to put my url please? I have pasted your code below again, I want that the redirect will be to https://www.mywebsite/members/me

    /**
     * Redirect user on successful php upload and crop.
     */
    add_action( 'bp_enqueue_scripts', function () {
        // you can set the url value to anything.
    	$url = trailingslashit( trailingslashit( bp_get_members_directory_permalink() ) . 'me/' . bp_get_members_invitations_slug() );
    	ob_start();
    	?>
        bp.Avatar.Attachment.on( 'change:url', function( data ) {
            if( data.get('object') == 'user' ) {
                window.location="<?php echo esc_url( $url ); ?>";
            }
        } );
    	<?php
    	$script = ob_get_clean();
    	wp_add_inline_script( 'bp-avatar', $script, 'after' );
    }, 100 );

    Thank you!

    Regards
    Daniel

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    This reply has been marked as private.