Forum Replies Created
-
Notice that when you go to page 2 the url does not change. So, after visiting the profile, clicking on back icon loads the main page.
Ideal way to confirm this bug would be to test it on TwntyNinteen theme.Ideally the cropper should appear below the uploaded image. It could be a site specific issue.
A screenshot would really help to understand this issue.
Try logging in from the user account. The users are recorded in BuddyPress when they first login to the site.
You can use BuddyPress with any theme.
-> you can use rtmedia
I guess this is an issue in BuddyPress. The buddypress shows repeated activities on load more because the parent activity isn’t available
You can use this :
add_filter('bp_before_core_get_users_parse_args',function($args){ $args['per_page']=24; return $args; });
re-save permalinks and make sure there is a activity directory page.
the /activity/p/0/ seems incorrect, it should be /activity/p/123 (not 0 )It this really a question ?
– BuddyPress – Built and Maintained by WordPress, who work & maintain project for free.
– Ultimate Member – Third party developer, who will bail out when the prospects of earning money are bleak.I have worked extensively on both addons, there’s no comparison for BuddyPress, code quality, community are amazing.
Quotes like member quotes ( appended with @ ) appear in Activity – mentions.
this has to be a custom build. There are going to be a lot of use cases to cover.
Have you enabled rocketloader or defer parsing of javascript in your site optimising plugin,
You need to remove the nav item at the book ‘bp_setup_nav’ hook.
Assuming BBPress. You need to give your default user role the permission of deleting topics.
something like :
add_action(‘admin_init’,function(){
// gets the author role
$role = get_role( ‘subscriber’ );
$role->add_cap( ‘delete_topics’ );});
add it once in your plugin or theme then reload the wp admin screen page and then remove this cpde. Check if it has worked.
Check if you’ve set the buddypress members directory page in WP admin – Settings – BuddyPress – Pages – members
1. (Please correct if I have misunderstood this)SVG are not allowed to be uploaded due to security reasons. Different icons is possible via CSS customisation.
2. Use translation files for relabelling (english to english)Hi, interesting request. It would be really great if you can also specify what kind of changes are you trying to make to the output of the activity feed.
A common mistake in such cases : Please check that your execution of add_action(‘bp_register_activity_actions’ … is before the action has been executed.
Set the default user role in WP admin – Settings – General as subscriber instead of contributor.
Most likely the database tables are corrupt. Please try optimising your WordPress database, especially the friends tables. this link should help you out :
Group categories is already available. Currently Group sub-categories is not available.
Try using this plugin : https://github.com/imath/bp-groups-taxo (use the download zip link)1. Try saving permalinks. WP admin – Settings – Permalinks.
2. Also check if you have the members directory connected at WP admin – Settings – BuddyPress
3. Also make sure that the slug of the members directory is unique, like if members directory is abc.com/members , then you do not have any custom rule in .htaccess for members.A better alternative may be to use Activity meta tables
Question : Are you using any custom plugin for Emails which may be modifying the wp_mail ?
BuddyPress uses the wp_mail function but it also checks if any filter is modifying the wp_mail like converting the mail format from standard text to html. If BuddyPress detects that some plugin is modifying the wp_mail’s default behaviour then it would not run as it assumes that the mail is being taken care of by other plugin.
Do you want to add content in the form of shortcodes which can be displayed in user profiles ?