Replies
- Brajesh Singh on July 17, 2020 at 11:54 am in reply to: [Resolved] MediaPress – Media List shortcode randomisation #31778
Hi Richard,
Please try usingorderby = 'random'That should do it.
Regards
Brajesh - Brajesh Singh on July 17, 2020 at 11:52 am in reply to: [Resolved] Where to change BP Text for activity update #31777
Hi Daniel,
Thank you for the question.If you do not want to use translation, you will need to override template if using legacy template pack.
Please copy parent-theme/buddypress/activity/post-form.php (if not present, you will need to copy it from plugin/buddypress/bp-templates/bp-legacy /buddypress/activity/post-form.php
If you are using BP Nouveau, the above method will not work.
you can use the following code in bp-custom.php or functions.php of your theme
add_filter( 'bp_core_get_js_strings', function ( $params ) { if ( ! isset( $params['activity'] ) || ! isset( $params['activity']['strings'] ) ) { return $params; } $params['activity']['strings']['whatsnewPlaceholder'] = sprintf( __( "Hello, What's new, %s?", 'buddypress' ), bp_get_user_firstname( bp_get_loggedin_user_fullname() ) ); return $params; }, 100 );Regards
Brajesh - Brajesh Singh on July 15, 2020 at 11:13 pm in reply to: Issues With BuddyBlog and also with Moderation Tools #31759This reply has been marked as private.
- Brajesh Singh on July 15, 2020 at 10:43 pm in reply to: [Resolved] Featured members / Own slug #31758
Hi Sandrine,
Thank you for using the plugin.The tab on members directory does not link to any page. The reason is the featured members does not have a specific page associated with it.
If you want to create a page with featured members, please use the shortcode from here
https://buddydev.com/plugins/bp-featured-members/#shortcode
Regards
Brajesh - Brajesh Singh on July 15, 2020 at 10:18 pm in reply to: BuddyPress Profile Completion and BuddyPress Force profile photo #31757
Thank you. I or @ravisharma will update you in next 2 days.
Regards
Brajesh Hi Ruben,
Those fields are automatically saved as post meta for you.1. You can use get_post_meta() to retrieve them. The “key” in the custom fields is used as meta key.
2. You may be right. We do not support Youzer due to our experience with the plugin and its support.
3. Thank you. I see it. It is not us doing anything special. It is the WordPress editor. We should still do something about it. I will be adding a filter to toggle link functionality.
Thank you
BrajeshHi Daniel,
Here are two othershttps://wordpress.org/plugins/bp-activity-share/
https://github.com/imath/bp-reshareI am not sure which one works better. Since the one you linked is the most recent one, it has a better chance.
Regards
BrajeshHi Ruben,
1. the fields are shown but when you publish and see the publication no field of the new ones that have been created appears :-
Those are saved as post meta and the plugin does not know what they are. You need to add that in your template file.
2. I also see that the selector does not work, also I see that with divi the whole structure of new post and it does not look good to the user :-
I haven’t tested with Divi. We have tested with normal WordPress and it works great for us. For any 3rd party incompatibility, either we work on it or as a webmaster, you do it on your own.
3. The idea is good but I see some errors that should not be seen, for example in the text editor if the user gives you to insert a link the links of the whole web appear
I am sorry but it seems there is something wrong with your setup. I have no idea what you are referring to. We are using standard editor and ikt is working fine for us.
I will suggest exploring the plugin or a normal WordPress/BuddyPress installation. Also, the current custom field via code is meant for developers.
Regards
Brajesh- Brajesh Singh on July 15, 2020 at 12:39 pm in reply to: [Resolved] Custom Recent visitor code #31744
Hi Carsten,
Thank you for telling me about the documentation expectation. I will be noting it and making sure to streamline in future.These plugins have grown with time and there have been a lot of change. There was no shortcode or widget or directory tab or even profile tab in the initial version. We need to keep updating the plugin docs with these changes. We will be adding link to our documentation in the plugin.
Now about your question:-
1. If you use the above code, It will list the most recent 10 visitors of the logged user. There is no concept of reset. If there are only 2 visitors in last 24 hours and you use the above code, It will list 2 users only.
The list will be zero only if there are no recent visitors in last 24 hours.
Hope it clarifies.
Regards
Brajesh - Brajesh Singh on July 15, 2020 at 12:26 pm in reply to: [Resolved] Hiding all BP content for other than logged in members #31741
Hi Carsten,
Thank you for confirming.Regards
Brajesh