BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Thank you. I am doing some check. I had hardened the admin edit to avoid this issue but will certainly be looking at it now.

    Will get back to you later today.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] BBpress Thread Prefix Plugin Idea #1898

    Hi Joshua,
    Thank you.

    After going through the requirement I believe It is a little bit complx than what I had originally post.

    Here is what I understand now.

    1. We need to create multiple boxes(dropdown items)
    2. We need to allow associating these dropdown(s) to specific forums

    3. Show & save it.

    The first step means we need to create some type of repeatable field.

    When do you need this functionality?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi Lyrics,
    Welcome to BuddyDev forums.

    In my personal view, I believe that your project will be better if you look for crowdfunding themes & plugins. It can be done with BuddyPress but it will be too much custom work.

    Instead, I will suggest first choosing a crowdfunding solution( theme+plugin ) and then if needed integrate BuddyPress.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi,
    Sorry I have been not able to reply properly.
    That seems the problem.

    Had you modified the privacy of galleries from admin earlier or from user profile(The update that changed the ownership)?

    It is a mistake if the ownership is getting changed, I will push the fix as soon as I know from where had you updated the gallery. Most probably this should be the front end not the wp admin page.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi Gregor,

    Thank you for posting. I am sorry for the inconvenience. Please give me 1-2 hours to check and update.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] BuddyPress Ajax Registration #1892

    Hi Paolo,
    My apologies for the inconvenience.
    Please send me the ftp and temporary access to WordPress admin. I will update it in 30 mins.

    Please send the mail to brajesh@buddyev.com

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174
    Brajesh Singh on in reply to: [Resolved] BBpress Thread Prefix Plugin Idea #1884

    Hi Joshua,
    I just had a look. It is easily doable.

    Do you want it to be per forum setting?

    We can use post meta to define the label/keys and show it on the front end post screen for thread. When a Thread is posted, The key can be added as the tag(as in the other site) and the label will be prefixed to the topic title.

    Do you think that is something that will help you?

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi Markus,
    Thank you for explaining. That is quiet possible. Please drop me a link on my email brajesh@buddydev.com

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi Markus,
    Thank you for asking.

    The overlay is not shown to everyone. Most of the time just ticking the “I am not a robot” will work. The overlay works fine with this plugin.(I have tested that).

    It is google’s algo that don’t show the overlay all the time.

  • Keymaster
    (BuddyDev Team)
    Posts: 25174

    Hi Markus,
    Please upgrade to version 1.2.3

    After that, you can put this code in your bp-custom.php and it will work as you have mentioned.

    
    
    //disable auto activation
    add_filter( 'bpajaxr_is_auto_activation_mode', '__return_false' );
    
    add_filter( 'bp_ajaxr_response', "my_redirect_on_login");
    
    function my_redirect_on_login( $data ) {
    	
    	$bp = buddypress();
    	
    	if ( ! empty( $bp->signup->errors) ) {
    		return $data;
    	}
    	
    	$data['redirect'] = 1;
    	$data['redirect_url'] = "https://www.wr-performance.de/anleitungen/fast-geschafft/";
    	
    	return $data;
    }
    
    

    Please do let me know if that works for you or not?

    Thank you
    Brajesh