Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: [Resolved] BuddyPress Auto Activate Auto Login #11728

    Thank you.
    I have it fixed now. Please check the site.

    The problem was you had pasted the code from forum notification email which had the code entity encoded. You should never copy it form the notification email.

    I have updated the code there too.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: [Resolved] BuddyPress Auto Activate Auto Login #11726
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: [Resolved] BuddyPress Auto Activate Auto Login #11725

    hi Rafael,
    I am very sorry, I should have first asked if you were comfortable with code.

    Please login using ftp and navigate to wp-content/themes directory.

    There you will see all the themes.

    Also, if you don’t mind, I can quickly assist with it. You may send me temporary ftp details on my email(posting in next private reply) and I can quickly fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: [Resolved] BuddyPress Auto Activate Auto Login #11723

    Hi Rafael,
    Thank you for purchasing the plugin.

    Please add this code to your theme’s functions.php or in the bp-custom.php

    
    /**
     * Redirect user to site home page when they register/login using BuddyPress Auto Activate Auto Login plugin.
     *
     * @return string
     */
    function buddydev_redirect_to_homepage_on_autologin() {
    	return site_url( '/' );
    }
    
    add_filter( 'bpdev_autoactivate_redirect_url', 'buddydev_redirect_to_homepage_on_autologin' );
    
    

    It will redirect user to site home page.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: [Resolved] Member Types Pro – Emergency #11700

    Hi J,
    I am marking it as resolved as per the email.

    For others, The solution was to create a User Role Updater for WooCommerce Memberships.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: [Resolved] Remove buddyblog "Posts" link in menu #11699

    Sorry I could not help in time. I am glad you did it yourself.

    It is easier with the upcoming BuddyBlog. The following code will code it

    
    add_filter( 'buddyblog_adminbar_nav_items', '__return_empty_array' );
    

    Marking it as resolved.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385

    Hi Herve,
    I am sorry for the delay. Please provide me till tomorrow. Got caught in another plugin release and could not work on it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: Personalized type of user profile #11696

    Hi Leslie,
    Thank you.
    The plugin is ready. I am working on documentation/release page and hoping to put it by tomorrow.

    The plugin will be a premium download but I will gladly provide you a free copy. Will post a coupon after releasing the plugin.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385

    Hi Naomi,
    Welcome to BuddyDev forums.

    Your site is private and needs registration before viewing, so I was not able to check it.

    If you can provide a temporary account to check, I will be glad to assist.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25385
    Brajesh Singh on in reply to: BuddyPress Extended User Groups Widget #11694

    Hi Cecile,
    Thank you.

    In the plugin, Please change this code

    
    							<a href="<?php bp_group_permalink() ?>"
    							   title="<?php bp_group_name() ?>"><?php bp_group_avatar_thumb() ?></a>
    

    to

    
    							<a href="<?php bp_group_permalink() ?>forum/"
    							   title="<?php bp_group_name() ?>"><?php bp_group_avatar_thumb() ?></a>
    

    Also, Please change this

    
    
    <a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>"><?php bp_group_name() ?></a>
    

    to

    
    <a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>forum/"><?php bp_group_name() ?></a>
    
    

    That will do it. Hope that helps.

    Regards
    Brajesh