Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,651 through 2,675 (of 31,071 total)
  • Author
    Search Results
  • #275476
    NFXpert
    Participant

    Hi

    I am experiencing the same with the Boss theme from Buddyboss. I hope an update of buddypress will solve this annoying issue.

    Best regards

    website001
    Participant

    Hello friends

    Got this code from buddydev website

    for theme functions php

    works, but newer versions of buddypress have
    5 group options. This code covers 4.

    ——————————————————————————————————
    add_action( ‘bp_core_activated_user’,

    ‘bpdev_set_email_notifications_preference’);

    function bpdev_set_email_notifications_preference( $user_id ) {

    //I am putting all the notifications to no by default
    //you can set the value to ‘yes’ if you want that notification to be enabled.
    $settings_keys = array(
    ‘notification_activity_new_mention’ => ‘no’,
    ‘notification_activity_new_reply’ => ‘no’,
    ‘notification_friends_friendship_request’ => ‘no’,
    ‘notification_friends_friendship_accepted’ => ‘no’,
    ‘notification_groups_invite’ => ‘no’,
    ‘notification_groups_group_updated’ => ‘no’,
    ‘notification_groups_admin_promotion’ => ‘no’,
    ‘notification_groups_membership_request’ => ‘no’,
    ‘notification_messages_new_message’ => ‘no’,
    );

    foreach( $settings_keys as $setting => $preference ) {

    bp_update_user_meta( $user_id, $setting, $preference );
    }

    //that’s it. have fun!

    }

    ———————————————————————————————————

    This is the option it doesn’t cover—–

    #5
    “Your request to join a group has been approved or denied”

    Can anyone update this ? That would be awsome.

    Thanks alot

    buddypress 2.8.2
    WordPress 4.7.5

    #275461
    r-a-y
    Keymaster

    BuddyPress cannot handle a different members slug for single profile pages.

    It might be possible via custom code, but is probably hard to implement. The easiest thing to do is remove the user slug entirely for user profiles, while keeping the Members Directory at users.

    You can remove the user portion of the member profile URL with the following code snippet in your theme’s functions.php or via a custom plugin:

    add_filter( 'bp_core_enable_root_profiles', '__return_true' );

    #275431
    Dinesh Kesharwani
    Participant

    I applied the patch and tested with all default themes (twenty-*) and two custom themes and it works fine.

    #275418
    Venutius
    Moderator

    Unable to reproduce this, did you deactivate the other plugins and try a default theme?

    offworld21
    Participant

    Hi,

    Is it possible to change the text of the Register Button from ‘Register’ to ‘Join us’? I’d also like to have the destination when the button is clicked to be a page with an AgileCRM form form, instead of either the BuddyPress or PMPro form (both of which I’m using). The reason for this is that I initially need new sign-ups to go straight into AgileCRM for manual approval, after which their user account will be manually created on WordPress by an admin, and the new user details emailed.

    Ideally I’d like new users to complete sign-up and be manually approved, whilst at the same time their details being sent to AgileCRM and a new contact created. I’ve tried this but even though I’ve set new sign-ups for manual approval, a new account is created (albeit with limited access), and they are immediately logged into the site. I cannot see a way to change this.

    I also tried using Zapier to pull new users into AgileCRM from WordPress but that too didn’t seem to work, event though when going through the testing stage it created a record in AgileCRM.

    I’m using PMPro because the client is looking to take online payments for sign-ups in the future, and want to retain the functionality and option to use the PMPro register page in the future.

    Current set-up:
    WordPress – 4.9.7
    Theme: Boss Child Theme
    Plugins:
    Agile CRM – v1.1
    All-in-One WP Migration – v6.72
    bbPress – v2.5.14
    BuddyBoss One Click Installer – v1.0.6
    BuddyBoss Products Updater – v1.0.2
    BuddyPress – v3.1.0
    BuddyPress Docs – v2.1.0
    BuddyPress Follow – v1.2.2
    BuddyPress Global Search – v1.1.9
    Hide Admin Bar From Non-admins – v1.0
    Import Users from CSV – v1.0.0
    Page Builder by SiteOrigin – v2.7.3
    Paid Memberships Pro – v1.9.5.3
    Paid Memberships Pro – Add Member Admin – v.4
    Paid Memberships Pro – Advanced Levels Page Shortcode Add On – v.2.4
    Paid Memberships Pro – Approvals Add On – v1.0.4
    Paid Memberships Pro – bbPress Add On – v1.5.5
    Paid Memberships Pro – BuddyPress Add On – v1.1.1
    Paid Memberships Pro – Email Templates Add On – v0.7.1
    Paid Memberships Pro – Membership Manager Role Add On – v.3.1
    Regenerate Thumbnails – v3.0.2
    SiteOrigin Widgets Bundle – 1.12.1
    The Events Calendar – v4.6.20.1

    Please let me know if you need any further information.

    Thanks in advance.

    #275353
    Tushar
    Participant

    Hello @r-a-y

    This error is occurring with all themes, either it’s on wordpress.org theme repository or any other source. Here I am attaching screenshots of WordPress’ default themes, from Twenty Ten to Twenty Seventeen.

    1. Twenty Ten: https://i.imgur.com/kZUxTUD.png
    2. Twenty Eleven: https://i.imgur.com/wMYZtfv.png
    3. Twenty Twelve: https://i.imgur.com/rEng3N8.png
    4. Twenty Thirteen: https://i.imgur.com/8tHqZ1D.png
    5. Twenty Fourteen: https://i.imgur.com/rY2nZwM.png
    6. Twenty Fifteen: https://i.imgur.com/3wrlQ0s.png
    7. Twenty Sixteen: https://i.imgur.com/1PZB9Ka.png
    8. Twenty Seventeen: https://i.imgur.com/suQPI1E.png

    This error is occurring due to buddypress/bp-templates/bp-nouveau/js/customizer.min.js.

    #275357
    sushant88
    Participant

    No it is not theme specific,
    As I posted in my query, in basic troubleshooting I changed the theme, and issue remained.
    It was persisting with default theme and our custom themes as well. The issue also persisted when we installed the demo wordpress website from the scratch.

    #275349
    r-a-y
    Keymaster

    What I’m asking is, is a user suppose to get a separate email with the activation code that they copy paste into?

    When a user completes registration, the user should get an activation email which looks like this:

    Thanks for registering!
    
    To complete the activation of your account, go to the following link: example.com/activate/XXX/

    XXX is the activation key. When the user clicks on this link, the activation page should show a form with the activation key already populated. The user has to submit the form to activate their account.

    For those with custom themes, that activation key might not be automatically populated into the form. This has caused a few support forum threads like this one to pop up.

    The fix for custom themes is noted here:

    BuddyPress 3.1.0 is now available!

    If you are not using a custom BuddyPress theme, then you can also try changing your theme to a WordPress default one to see if your problem still exists.

    #275347
    r-a-y
    Keymaster

    @sushant88 @tushar4monto Does this occur with all themes or a specific one?

    If it is a specific theme, is the theme freely available on the wordpress.org theme repository? If so, which one?

    #275343
    buphx
    Participant

    Hello,
    I am having the exact same issue. The activity stream only shows up on an individual profile and I’ve disabled all other plugins and switched the theme to Twenty Seventeen. The console shows no related errors. When I switch from bp-nouveau to legacy everything seems to work perfectly but I would also much prefer to use nouveau. The only thing I can see that my site has in common with @aaronpods is WPEngine as a host. Any help with this would be much appreciated. I am happy to provide any other info that would be of use. Thank you!

    Nick

    #275326
    Tushar
    Participant

    Hello

    I get the same error. with default WordPress theme.
    Uncaught TypeError: Cannot read property ‘selector’ of undefined
    Please check the link. some settings options not working with this error. if I uninstall this plugin then all options are working.

    http://prntscr.com/k8v054
    http://nimb.ws/eJOBzP

    #275324
    nirgalo
    Participant

    Hi, got the same problem, cannot upload picture on profile, crop doesn’t work and displays an error. I have imageMagick enabled. I read the above disabling plugins/changing theme but really… what is that? Profile photo upload used to work and now it is broken, the problem must be in BuddyPress no? I am using BuddyPress 3.1.0.
    Also why do I have to crop the image? I upload a square picture, I would expect the backend to get this and do what it has to do with it, why asking me to crop??

    #275322
    sushant88
    Participant

    Buddy press is not letting WordPress’ customize function play well. following error is thrown when we try to customize WordPress page

    customizer.min.js:1 Uncaught TypeError: Cannot read property 'selector' of undefined
        at HTMLDocument.<anonymous> (customizer.min.js:1)
        at i (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2)
        at Object.fireWith [as resolveWith] (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2)
        at Function.ready (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2)
        at HTMLDocument.K (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2)
    (anonymous) @ customizer.min.js:1
    i @ load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2
    fireWith @ load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2
    ready @ load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2
    K @ load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,jquery-ui-resizable&ver=4.9.7:2

    View post on imgur.com

    Disabling the plugin allows us to customize the front page. We were able to reproduce the error with different wordpress setup on both linux and windows.

    1. Which version of WordPress are you running? 4.9.7
    2. Did you install WordPress as a directory or subdomain install? Directory
    3. If a directory install, is it in root or in a subdirectory? subdirectory
    4. Did you upgrade from a previous version of WordPress? If so, from which version? no
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. yes
    6. Which version of BP are you running? 3.1.0
    7. Did you upgraded from a previous version of BP? If so, from which version? no
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? advanced-custom-fields-pro
    9. Are you using the standard WordPress theme or customized theme? twenty fifteen, sixteen, seventeen,
    10. Which theme do you use ? twenty fifteen
    11. Have you modified the core files in any way? no
    12. Do you have any custom functions in bp-custom.php? no
    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? 2.5.14
    14. Please provide a list of any errors in your server’s log files. there were no error
    15. Which company provides your hosting? cloudways
    16. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux, Apache
    Basic Trouble Shooting:
    > changed theme , issue persisted
    > disabled all plugins except BuddyPress,
    > reinstalled buddy press and removed caching entirely
    >
    issue persisted

    #275310
    r-a-y
    Keymaster

    You should use add_filter() and not add_action().

    Apart from that the code looks correct to me… you might want to move your code out from your theme and into a plugin.

    #275300

    In reply to: password reset

    Venutius
    Moderator

    I’m not able to recreate your issue, I suggest you try deactivating all other plugins and run with the 2017 theme to see if that changes the behaviour.

    #275299
    Venutius
    Moderator

    Not sure what could be causing that. IF you run it with only BuddyPress running and with the 2017 theme, does it still do that?

    #275294
    redshujin
    Participant

    @r-a-y – I was able to resolve this today after a lot of testing. I ended up having to switch themes to a default theme, disable ALL plugins, re-enable all plugins and then switch back to our KLEO theme. This was the only solution that fixed the issue during my testing.

    #275284
    Venutius
    Moderator

    BP essentally uses the same login as WordPress, there’s a lot of ways of customising it though, depending on your knowledge. There’s various custom login plugins, including Theme My Login, which allows you to change a lot of the login functionality.

    BuddyPress provides the following
    Extended User Profiles
    Groups
    Messaging
    Friends
    Activity

    Forums can be added to groups if you install bbPress.

    For standalone forums you only need bbPress

    #275276
    r-a-y
    Keymaster

    @redshujin – Change your theme temporarily to a WordPress default theme and give it another try.

    If that doesn’t work, set up a fresh install of WordPress (either locally or somewhere else on your server) and only have the BuddyPress plugin activated. Next, attempt to upload a photo. If that works, then it has something to do with your particular install. Probably due to a plugin.

    #275265
    redshujin
    Participant

    I am having this issue on our site. It is running KLEO Child theme. When a user tries to upload an image for the avatar you will only see a small box in the left top hand corner of where the picture preview should be. I have tried Chrome and Firefox browsers in which this happens on both. I have attempted to deactivate plugins and am not seeing this resolving. Please let me know what additional troubleshooting that you would like to see done or tested and I would be glad to do what I can to assist

    WordPress 4.9.7
    BuddyPress 3.1.0

    #275242
    kenmcall
    Participant

    Should have mentioned that I’m running WordPress 4.9.7 and Buddypress 3.1, along with the BuddyBoss Boss theme 2.4.3.

    #275237
    r-a-y
    Keymaster

    About the code that is linked:
    https://buddypress.trac.wordpress.org/changeset/11766/trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php

    If your theme contains either a /buddypress/members/activate.php or /registration/activate.php file, you replace red lines with green lines. If your theme does not have any of these files, then you don’t need to make any changes.

    If you are still running into trouble, change your theme temporarily to see if your theme is the issue.

    —-

    If you want to roll back to an older version, you can do so on the following page:
    https://wordpress.org/plugins/buddypress/advanced/

    Under “Previous Versions”, select 2.9.4 and replace the copy on your server with that one.

    manuels90
    Participant

    Hi there,

    I noticed the following problem while developing my own stylesheets for the new Nouveau theme. The div which is supposed to have the classes “activity-meta action” actually has the classes “-meta action”. Apparently this is the case because bp_nouveau_activity_entry_buttons() uses bp_nouveau_wrapper() where the following code is found:

    $current_component_class = bp_current_component() . '-meta';

    So it seems like bp_current_component() is empty/undefined in the activity stream.
    Has anyone here had that problem? Is this a general problem or could it be specific to my site?

    #275221
    ripulkr
    Participant

    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.

Viewing 25 results - 2,651 through 2,675 (of 31,071 total)
Skip to toolbar