Replies
- Brajesh Singh on October 26, 2017 at 12:29 pm in reply to: [Resolved] Privacy issue in comments #11319
@ravisharma, please look into this topic and assist as needed.
Hi Aldo,
I am sorry, I haven’t been able to devote time to this due to festive holidays last week and have been clearing backlogs till today. Hoping to restart on it tomorrow.Thank you
brajeshPlease check for javascript error. It is not the expected behaviour. On selecting the image, It should attach and close the popup.
Can you please provide a demo account.
Regards
Brajesh- Brajesh Singh on October 26, 2017 at 12:26 pm in reply to: Schedule date in Simple Frontend Post? #11316
Hi jcsmonogram,
Thank you for posting.
yes, It is possible to do it but will need custom code. We will need to add a meta field for accepting post date(schedule date) and set the status to draft.If it is not too critical, please wait for a few days, we are working on something that will allow it out of the box for BuddyBlog(I am assuming you are using it with BuddyBlog).
Regards
Brajesh - Brajesh Singh on October 26, 2017 at 12:24 pm in reply to: Reorganize input profile and Xprofile fields in register.php with Ajax Register #11315
Hi Gert,
It is feasible and we have done it in past.
For now, I will suggest waiting for 4-7 days as we may have next version that allows it out of the box. We are also including the login/forget password support too.Thank you
Brajesh - Brajesh Singh on October 26, 2017 at 12:20 pm in reply to: [Resolved] Remove buddyblog "Posts" link in menu #11314
Hi Janelle,
Are you referring to the adminbar or the profile menu? Can you please put a screenshot and link here?Thank you
Brajesh - Brajesh Singh on October 26, 2017 at 12:19 pm in reply to: [Resolved] blog categories for groups | an issue of showing posts in activity stream #11313
Hi Mohamed,
here is the code that we use(similar to this)function buddydev_update_activity_args_on_publish( $args ) { if ( $args['component'] !== 'blogs' || $args['type'] !== 'new_blog_post' ) { // change type to yours. return $args; } // It must be post publish. let us check for the post meta. // check if this was saved via BCG. $post_id = $args['secondary_item_id']; $group_id = get_post_meta( $post_id, '_bcg_group_id', true ); if ( ! $group_id ) { return; } $args['component'] = 'groups'; $args['item_id'] = absint( $group_id ); return $args; } add_action( 'bp_after_activity_add_parse_args', 'buddydev_update_activity_args_on_publish' );You can change this
$args['type'] !== 'new_blog_post'and replace ‘new_blog_post’ with your activity type.
And it will work. You can put the above code in your bp-custom.php
Regards
Brajesh Hi Thomas,
My apologies for the delayed reply.We will need a few days before we can assist you on this. Things are a bit delayed at the moment since we have just resumed the work after a week of holidays and currently clearing the backlog.
Thank you
BrajeshHi Thomas,
Thank you.
We will update it in next 2-3 days. Things are a bit delayed at the moment since we have just resumed the work after a week of holidays.Will update before the weekend and message you.
Thank you
Brajesh- Brajesh Singh on October 24, 2017 at 10:44 pm in reply to: "BuddyPress Deactivate Account" email notification #11307
Hi Margarita,
For now,
Please open “WCDFE.php” in the wp-change-default-email pluginand change line 64 from
add_action( 'init', array(&$this, 'init' ));to
$this->init();That should do it.
Regards
Brajesh