Replies
- Brajesh Singh on November 16, 2017 at 5:12 pm 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 - Brajesh Singh on November 16, 2017 at 4:57 pm in reply to: [Resolved] BuddyPress Auto Activate Auto Login #11726This reply has been marked as private.
- Brajesh Singh on November 16, 2017 at 4:56 pm 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 - Brajesh Singh on November 16, 2017 at 4:45 pm 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 - Brajesh Singh on November 15, 2017 at 2:42 pm 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 - Brajesh Singh on November 15, 2017 at 2:41 pm 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 - Brajesh Singh on November 15, 2017 at 2:21 pm in reply to: [Resolved] automatic change of type with Member Types Pro #11697
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 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- Brajesh Singh on November 15, 2017 at 2:16 pm in reply to: [Resolved] How to remove the "View" link in the user profile? #11695
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 - Brajesh Singh on November 15, 2017 at 2:15 pm 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