Replies
- Brajesh Singh on August 12, 2020 at 12:26 am in reply to: How can I allow users to delete there own Post #32317
Hi Adeala,
Is it about activity update? If yes, It is already allowed by BuddyPress.if it is about something else, Please do let me know.
Regards
Brajesh - Brajesh Singh on August 12, 2020 at 12:23 am in reply to: Buddyblog fork questions : custom post type #32316
Hi Bruno,
I had a look and the issue was as expected.The CPTUI registers post type on ‘init’ action with 10 priority while the bp_setup_nav is also called on the same but prior to CPTUI’s call.
Due to this, The custom post types were not available when registering user nav. I changed the hook to init with lower priority for registering nav and it is working. I have updated it on your site too.
Regards
Brajesh Hi Ankit,
Thank you for the patience.The plugin is working when following private accounts. I made a profile private and followed them from the members directory. They got the notification.
If you are referring to making button available on the profile page, sorry, that is beyond the scope of this plugin.
Regards
BrajeshHi Daniel,
Thank you for the question.Currently, It is not possible to reliably detect number of activities viewed. An activity can be viewed inside the stream while it may be viewed by its own permalink page.
Counting inside the stream is not straight forward and that’s why I am unable to suggest any code.
Regards
BrajeshHi Steven,
Thank you for the question.is it about BuddyPress activity posting or blog post?
Regards
BrajeshHi Chelle,
Thank you for the question.Currently, we are unable to support the tiled gallery. The reason is all image sin a MediaPress gallery have same size. To support tiled gallery, you need images of variable size.
I assume you are using shortcode to pull the galleries list. That seems the best way to do it currently.
Regards
Brajesh- Brajesh Singh on August 11, 2020 at 8:01 pm in reply to: [Resolved] BuddyPress Member Types Pro – LernDash Groups Issue #32303
Hi Amir,
Thank you for confirming.I hope that it continues to work as expected.
Regards
Brajesh - Brajesh Singh on August 11, 2020 at 7:59 pm in reply to: [Resolved] Buddypress User Badges Crashed, not installing #32301
Hi Amy,
Thank you for the reply.
We have received your email and will be replying there.Marking it resolved here.
Regards
Brajesh - Brajesh Singh on August 11, 2020 at 7:57 pm in reply to: [Resolved] can't change buddyblog slug in my permalinks #32300
Hi Karen,
I am not sure what you are doing but putting this line in bp-custom.php<?php define( 'BP_BUDDYBLOG_SLUG', 'blog' );Is working for me. Just tested again.
Please make sure the file is named “bp-custom.php” and not “bp-custom.php.txt”.
I do not use Windows but it seems if you use the file name in quotes, eg
"bp-custom.php"The notepad will not save it as text and should work.
Regardds
Brajesh Hi Tony,
Thank you for checking back.I have explored it now. It is not feasible to cache properly with current BuddyPress setup.
In order to use the cache we need the ability to store result and delete/update when a new value is entered.Currently, BuddyPress only provides the value reliably(url). In teh display callback, even the user id is optional and not always available. We need the user, field id and value to do the caching reliably.
Another strategy will be to hash the url and create a transient based on this hashed url. The problem with this approach is when a value is updated, we will not be able to clear old value as the key changes.
I am unable to add this solution in the plugin. I can certainly add a filter to allow you load the content from the remote site or a cached store using the second strategy(you will need to implement your own caching strategy). Let me know if it works for you?
Regards
Brajesh