Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 41 total)

  • ripulkr
    Participant

    @ripulkr

    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.


    ripulkr
    Participant

    @ripulkr

    Ideally the cropper should appear below the uploaded image. It could be a site specific issue.


    ripulkr
    Participant

    @ripulkr

    A screenshot would really help to understand this issue.


    ripulkr
    Participant

    @ripulkr

    Try logging in from the user account. The users are recorded in BuddyPress when they first login to the site.


    ripulkr
    Participant

    @ripulkr

    You can use BuddyPress with any theme.


    ripulkr
    Participant

    @ripulkr

    -> you can use rtmedia


    ripulkr
    Participant

    @ripulkr

    I guess this is an issue in BuddyPress. The buddypress shows repeated activities on load more because the parent activity isn’t available


    ripulkr
    Participant

    @ripulkr

    You can use this :

    add_filter('bp_before_core_get_users_parse_args',function($args){
    	$args['per_page']=24;
    	return $args;
    });

    ripulkr
    Participant

    @ripulkr

    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 )


    ripulkr
    Participant

    @ripulkr

    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.


    ripulkr
    Participant

    @ripulkr

    Quotes like member quotes ( appended with @ ) appear in Activity – mentions.


    ripulkr
    Participant

    @ripulkr

    this has to be a custom build. There are going to be a lot of use cases to cover.


    ripulkr
    Participant

    @ripulkr

    Have you enabled rocketloader or defer parsing of javascript in your site optimising plugin,


    ripulkr
    Participant

    @ripulkr

    You need to remove the nav item at the book ‘bp_setup_nav’ hook.


    ripulkr
    Participant

    @ripulkr

    Assuming BBPress. You need to give your default user role the permission of deleting topics.

    bbPress User Roles and Capabilities

    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.


    ripulkr
    Participant

    @ripulkr

    Check if you’ve set the buddypress members directory page in WP admin – Settings – BuddyPress – Pages – members


    ripulkr
    Participant

    @ripulkr

    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)


    ripulkr
    Participant

    @ripulkr

    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.


    ripulkr
    Participant

    @ripulkr

    Set the default user role in WP admin – Settings – General as subscriber instead of contributor.


    ripulkr
    Participant

    @ripulkr

    Most likely the database tables are corrupt. Please try optimising your WordPress database, especially the friends tables. this link should help you out :

    Fixing Corrupted or Broken Files and Databases in WordPress


    ripulkr
    Participant

    @ripulkr

    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)


    ripulkr
    Participant

    @ripulkr

    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.


    ripulkr
    Participant

    @ripulkr

    A better alternative may be to use Activity meta tables


    ripulkr
    Participant

    @ripulkr

    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.


    ripulkr
    Participant

    @ripulkr

    Do you want to add content in the form of shortcodes which can be displayed in user profiles ?

Viewing 25 replies - 1 through 25 (of 41 total)
Skip to toolbar