Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'custom activity page'

Viewing 25 results - 101 through 125 (of 745 total)
  • Author
    Search Results
  • a608237
    Participant

    I added some customized content to the buddypress.php template in my theme, but no matter the section (notifications, activity, profile etc.), my custom content appears in every page.

    How can I have the content appear only on the home page (or another specific profile page?)?

    Thanks in advance.

    #304936
    Venutius
    Moderator

    That would be pretty difficult to do, or at least it’s not trivial. The issue is that the function used to populate the activity page does not have the ability to filter based on post settings, so you’d have to create a function to do that. Probably you’d end up overloading the activity page and displaying your own custom activity loop which took into account the post taxonomies.

    a608237
    Participant

    I am tinkering with some tricks shown here: https://usersinsights.com/buddypress-custom-profile/.

    It has been mostly successful and straight forward more or less. The examples in the link adds customized content to the user’s HEADER section however (where Avatar & last-active time is shown) using:

    add_action( ‘bp_profile_header_meta’, ‘my_function’ );

    How might I add actions to the main body of a profile page (i.e. in the Base profile section [before and after])? I’ve tried substituting ‘bp_profile_header_meta’ with the other hooks shown in the tutorial i.e.:

    add_action( ‘bp_before_profile_content’, ‘my_function’ );
    add_action( ‘bp_before_member_activity_content’, ‘my_function’ );

    but none of them displays the content within the main body of the profile. Please help.
    Thanks in advance.

    #304711
    Venutius
    Moderator

    Hi there, some answers:

    1. You can change the layout of profiles by overloading the profile files and css, see: https://codex.buddypress.org/themes/theme-compatibility-1-7/theme-compatibility-2/ it’s possibly a bit advanced for you right now but all the files in the plugins/buddypress/bp-templates/your-bp-theme/buddypress can be copied, modified and loaded from your child theme directory. Similarly you can overload the css to make styling and layout changes.

    1b. The default is for horizontal navigation unless you’ve changed it in Customizer>>BuddyPress.

    2. The BuddyPress extended profile is editable from the front end, and avatar too. It’s only the wordpress profile that’s enditable in admin and most BP sites don’t use that as t’s really set up for authors.

    3. I recently posted the code to combine all the profile activity feeds into 1, https://buddypress.org/support/topic/how-to-combine-activity-tabs-to-one/

    4. https://wordpress.org/plugins/cb-change-mail-sender/

    5+6 are bbPress questions, for the best answer you should post on their forum https://bbpress.org/forums/

    7. Assuming you have set up the groups directory page and enabled group creation by users in Settings>>BuddyPress>>Options, users will have the option to create groups on the Groups directory page and also from the Groups menu of the WordPress toolbar ( top right hand side of the screen, hover over your avatar image, drop down will appear one option will be groups.

    #303886

    In reply to: Group home page

    shanebp
    Moderator

    In Nouveau, you can set the activity stream to appear on the Home tab.

    Click ‘Groups default front page’ which will open the WP Customizer.
    Remove the check from the ‘Enable custom front pages for groups.’ checkbox.
    Then click ‘Publish’ at the top of the page.
    The ‘Home’ tab is still the default tab and it should show the Activity Stream.

    Venutius
    Moderator

    Then you’d need to overload your child-themes template file for the homepage, but getting the activity on there would need quite a bit of coding.

    BP was designed to be customised with plugins, it’s not unusual for a BP site to have several tens of plugins and maybe more.

    lordmatt
    Participant

    What I am trying to do is add a custom page type to my customizr child theme. This page would act as the front page for the site. I want to replicate most of the features of the current front page but show the (public) activity stream in a central column and recent blog posts in a sidebar (rather than filling the page as at present). A bit more like Facebook etc..

    I’m getting my head around the complicated beast that is Customizr but I am clueless as to what I need to even start looking at to put the activity feed on the page as well.

    I’m feeling overwhelmed by something that I keep thinking should be relatively straight forward. I would welcome some guidance to ease me into this.

    Venutius
    Moderator

    I think based on your requirement that for your ultimate requirement you will need some custom coding. This is due to you wanting to add weighting to the likes.

    One option would be to enable new blog posts to appear in the BuddyPress activity stream. That would automatically allow BuddyPress users to favorite the activity and for it to appear in their list of favorites in their profile. However you won’t easily be able to add your weighting since the BP favorites system dones not have this functionality. But that’s the same for any existing plugin. The potential downside is that the BP Activity stream is not just posts (which would have to be enabled with a bit of code).

    There are also a number of WordPress post specific likes plugins, however these don’t give you a profile page with a list of your likes and the same issue remains that they would not support you weighting.

    If it was me, I’d probably look to use a plugin such as BuddyPress Like as a basis for my solution. I’ve not looked in detail at this plugin but I’m assuming it adds the ability to like posts and display a list of likes in the users profile. That would serve as a good basis for what I was looking to do. It would then need some modification in order to support your specific weighting mechanism. The complexity of that task would depend on exactly how you want your weighting mechanism to work and the technique you use to account for it when displaying the likes list.

    #302443
    shanebp
    Moderator

    If you are not an experienced developer, you may be better off hiring such a person.

    Until you write some code and ask specific questions about it, here are some general pointers…

    Take a look at how the activities are restricted on a group activity page.

    There are some codex pages that provide info:

    Add custom filters to loops and enjoy them within your plugin

    Activity dropdown filters in templates

    #302241
    webusat
    Participant

    Hi,

    I am trying to add some notifications up near the breadcrumbs in my site. I tried just adding:

    `bp_notifications_add_notification()’

    To my page that renders the content but no numbers appear. What do I need to do so I can have an icon along with a number that represents activity?

    For example, Mentions – 2

    Thanks,
    Stan

    Brajesh Singh
    Participant

    Hi,
    Before deciding to redirect from sitewide activity to user’s own activity you should know the difference between them and then decide.

    – On the sitewide page a user can see activity from whole site(including his won/friends/his groups and any non related member of the site)

    – On profile, a user can see his/her won activity as well as friends/groups etc but activities of group they are not member of or activity of users they are not friends with, won’t be visible,

    If you still want to redirect from sitewide activity to user’s own activity, You may use the following code.

    
    
    /**
     * Redirect logged in user's from sitewide activity page to profile activity.
     */
    function buddydev_redirect_sitewide_activity_to_profile_activity() {
    
    	if ( is_user_logged_in() && bp_is_activity_directory() ) {
    		bp_core_redirect( bp_loggedin_user_domain() . bp_get_activity_slug() );
    	}
    }
    
    add_action( 'bp_template_redirect', 'buddydev_redirect_sitewide_activity_to_profile_activity' );
    

    PS:- you can put the code in your theme’s functions.php or in the wp-content/plugins/bp-custom.php

    Best Regards
    Brajesh

    #282023
    indrabhusanroy
    Participant

    Yes I have asked them for that. I was asked to buy the pro version. Even then I don’t think that will solve the problem as they in pro version, I will get the ability to add a custom URL for login redirection, but instead I want the Profile page of the users.

    So now the users after login, they are being redirected to the activity page which has the following tabs: members, search. Now if they want to go to their profile, they have to use my site primary menu where, I have kept profile tab. Now this is not good.

    So, it will be best,if there is a profile tab on the activity page. Or you can help me to make the default landing page the profile page.

    Please help to solve this.

    Regards

    #278558
    shanebp
    Moderator

    You should be using the current versions of WP and BP.

    It sounds like your site is running some custom code that deletes or does not display activities with timestamps out of a certain range.

    Look at the admin page to see if those activities are actually deleted or just not being shown on the front-end: .../wp-admin/admin.php?page=bp-activity

    Deactivate any custom code re activities on your site.

    #278297
    EirikNesjo
    Participant

    Dear all

    I have been searching around on google without luck for this one.

    I have a custom post type, let say “city”, where I want each city to have its group like or group activity feed. Either by mimicking a group or creating a separate group for each post, in order to show the activity on the “city” page frontend. And allowing users to follow

    Thanks for any advise in order to have this functionality

    Eirik

    #276818
    heikesworld
    Participant

    Hello,

    I know this has been asked before and I followed the suggestion from this thread:
    https://buddypress.org/support/topic/block-activity-stream-types/

    and tried adding this code to my the child theme functions.php and to bp-custom.php:

    // Filter bbPress from updating activity stream
    function imath_activity_dont_save( $activity_object ) {
    $exclude = array( 'bbp_topic_create', 'bbp_reply_create',‘friendship_created’, ‘joined_group’, ‘updated_profile’, ‘updated_profile_photo’);
    
    // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
    if( in_array( $activity_object->type, $exclude ) )
    $activity_object->type = false;
    
    }
    
    add_action(‘bp_activity_before_save’, ‘imath_activivity_dont_save’, 10, 1 );

    but it didn’t work, profile updates, profile photo updates, new friendships, forum topics and forum replies are still showing on the activity page 🙁
    What am I doing wrong?
    Thank you for your help.

    ngoegan
    Participant

    I’m running WP 4.9.8 with the Twenty Twelve theme on my site http://www.charlottemasoneducation.org
    All plugins are updated.

    Plugins:

    Akismet Anti-Spam
    bbPress Version 4.0.8
    BP Registration Options Version 2.5.14
    BP xProfile Location Version 4.3.5
    BuddyPress Version 1.6
    BuddyPress Activity Plus Version 3.1.0
    BuddyPress Activity ShortCode Version 1.6.4
    BuddyPress Edit Activity Version 1.1.5
    BuddyPress Group Email Subscription Version 1.0.9
    BuddyPress Groups Extras Version 3.8.2
    InfiniteWP – Client Version 0.3.0
    Remove Dashboard Access Version 3.4.1
    The Events Calendar Version 1.0.2
    W3 Total Cache Version 1.4.2
    Widget Logic Version 0.9.7
    Wordfence Security Version 5.9.0
    WP SMTP Version 7.1.11 | By Wordfence | View details

    When I go to APPEARANCE > CUSTOMIZE > HOMEPAGE SETTINGS and choose Sitewide Activity as the home page, it causes a redirect loop on the homepage. While I’m logged in as admin, I can see the Sitewide Activity page by clicking on the home page, but anyone who is logged out, gets a “too many redirects” error.

    When I change the settings to REGISTER as the home page, logged in members are redirected to the MEMBER page after logging in.

    I have tried adding a redirect plugin and that breaks the site. I would really like members to land on the Sitewide Activity feed once they log in.

    Any help would be greatly appreciated. Thank you.

    #276296
    dom123
    Participant

    Hello Prashant Singh,

    thanks for your quick reply. With the plugins you mention I can only put single parts on a page (like the activity stream or the members listing), but not the whole content (with the profile picture, the profile header, all the menu tabs etc.). I need to do this so I can design the surrounding with the theme’s settings (such as custom sidebars with background gradient colors etc.) …I guess there is not an easy way to take the whole BuddyPress console and put it within a normal page, but what would be a good workaround for that?

    #274682
    ghosted
    Participant

    BuddyPress :3.1

    I really hope someone can help me with this. I’ve read a lot of support pages/articles from varying sources, nothing I put in bp-custom.php works for removing profile nav tabs/sub nav tabs.

    I’ve already tried https://buddypress.org/support/topic/the-right-way-to-remove-nav-items/

    Is it possible to make Activity and Forum profile tabs private?


    which doesn’t seem to have any effect at all.

    the only thing i’ve found that kind does anything is:

    function bp_remove_activity_from_profile()
    {
    bp_core_remove_nav_item('activity');
    }
    add_action('bp_activity_setup_nav','bp_remove_activity_from_profile');

    but it’s not ideal since there are quite a few things i’d like to remove.

    balebond
    Participant

    Ideally, I want to customize which groups a user can post to on profile and activity pages. The drop down lists all groups they are a member of but want to restrict non-admins from posting activity to certain groups. I have achieved this on the group page but members can still post from Activity using the dropdown.

    An alternative would be to just hide “Post to:” dropdown entirely. Any ideas? Thanks in advance.

    lz430
    Participant

    Hey everyone,
    I have a membership site. It’s running Woocommerce, WP 4.9.6 and Buddypress 3.0.0. My BuddyPress status is below.

    I’m having a problem when someone is choosing a any kind of membership(I only have free and 1 paid at the moment). When they get to the billing screen they can either use Facebook or Google to login and fill in the details.

    Once they do that, Buddypress redirects them to their wall. I want them to be able to continue the checkout process. I’ve tried so many things, but can’t override it.

    Please help!

    
    ### WordPress Environment ###
    
    Home URL: http://www.specialtactics.global
    Site URL: http://www.specialtactics.global
    WC Version: 3.4.1
    Log Directory Writable: ✔
    WP Version: 4.9.6
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: ✔
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 7.1.16 - We recommend using PHP version 7.2 or above for greater performance and security. How to update your PHP version
    PHP Post Max Size: 128 MB
    PHP Time Limit: 3000
    PHP Max Input Vars: 1000
    cURL Version: 7.54.0
    OpenSSL/1.0.2k
    
    SUHOSIN Installed: –
    MySQL Version: 5.6.39-cll-lve
    Max Upload Size: 128 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 3.4.1
    WC Database Prefix: wp_
    MaxMind GeoIP Database: ✔
    Total Database Size: 11.24MB
    Database Data Size: 10.10MB
    Database Index Size: 1.14MB
    wp_woocommerce_sessions: Data: 0.04MB + Index: 0.00MB
    wp_woocommerce_api_keys: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_attribute_taxonomies: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_downloadable_product_permissions: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_order_items: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_order_itemmeta: Data: 0.00MB + Index: 0.01MB
    wp_woocommerce_tax_rates: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_tax_rate_locations: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_shipping_zones: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_payment_tokens: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_payment_tokenmeta: Data: 0.00MB + Index: 0.00MB
    wp_woocommerce_log: Data: 0.00MB + Index: 0.00MB
    ts_redirects: Data: 0.00MB + Index: 0.00MB
    wp_achievements: Data: 0.02MB + Index: 0.01MB
    wp_bp_activity: Data: 0.01MB + Index: 0.01MB
    wp_bp_activity_meta: Data: 0.00MB + Index: 0.01MB
    wp_bp_friends: Data: 0.00MB + Index: 0.00MB
    wp_bp_groups: Data: 0.00MB + Index: 0.00MB
    wp_bp_groups_groupmeta: Data: 0.00MB + Index: 0.00MB
    wp_bp_groups_members: Data: 0.00MB + Index: 0.00MB
    wp_bp_links: Data: 0.00MB + Index: 0.00MB
    wp_bp_links_categories: Data: 0.00MB + Index: 0.00MB
    wp_bp_links_linkmeta: Data: 0.00MB + Index: 0.00MB
    wp_bp_links_votes: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_drafts: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_labels: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_label_message: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_messages: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_meta: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_notices: Data: 0.00MB + Index: 0.00MB
    wp_bp_messages_recipients: Data: 0.00MB + Index: 0.00MB
    wp_bp_notifications: Data: 0.00MB + Index: 0.00MB
    wp_bp_notifications_meta: Data: 0.00MB + Index: 0.00MB
    wp_bp_user_blogs: Data: 0.00MB + Index: 0.00MB
    wp_bp_user_blogs_blogmeta: Data: 0.00MB + Index: 0.01MB
    wp_bp_xprofile_data: Data: 0.00MB + Index: 0.00MB
    wp_bp_xprofile_fields: Data: 0.03MB + Index: 0.05MB
    wp_bp_xprofile_groups: Data: 0.00MB + Index: 0.00MB
    wp_bp_xprofile_meta: Data: 0.01MB + Index: 0.02MB
    wp_buddyboss_media: Data: 0.00MB + Index: 0.00MB
    wp_buddyboss_media_albums: Data: 0.00MB + Index: 0.00MB
    wp_commentmeta: Data: 0.00MB + Index: 0.01MB
    wp_comments: Data: 0.01MB + Index: 0.01MB
    wp_gde_profiles: Data: 0.00MB + Index: 0.00MB
    wp_gde_secure: Data: 0.00MB + Index: 0.00MB
    wp_learndash_user_activity: Data: 0.01MB + Index: 0.03MB
    wp_learndash_user_activity_meta: Data: 0.04MB + Index: 0.03MB
    wp_links: Data: 0.00MB + Index: 0.00MB
    wp_options: Data: 2.97MB + Index: 0.09MB
    wp_pmpro_discount_codes: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_discount_codes_levels: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_discount_codes_uses: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_memberships_categories: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_memberships_pages: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_memberships_users: Data: 0.00MB + Index: 0.01MB
    wp_pmpro_membership_levelmeta: Data: 0.00MB + Index: 0.00MB
    wp_pmpro_membership_levels: Data: 0.00MB + Index: 0.01MB
    wp_pmpro_membership_orders: Data: 0.00MB + Index: 0.02MB
    wp_pmxi_files: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_history: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_imports: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_posts: Data: 0.00MB + Index: 0.00MB
    wp_pmxi_templates: Data: 0.00MB + Index: 0.00MB
    wp_postmeta: Data: 0.83MB + Index: 0.21MB
    wp_posts: Data: 2.47MB + Index: 0.17MB
    wp_pp_login_builder: Data: 0.01MB + Index: 0.00MB
    wp_pp_password_reset_builder: Data: 0.01MB + Index: 0.00MB
    wp_pp_registration_builder: Data: 0.01MB + Index: 0.00MB
    wp_revslider_css: Data: 0.09MB + Index: 0.00MB
    wp_revslider_layer_animations: Data: 0.00MB + Index: 0.00MB
    wp_revslider_navigations: Data: 0.00MB + Index: 0.00MB
    wp_revslider_sliders: Data: 0.02MB + Index: 0.00MB
    wp_revslider_slides: Data: 0.18MB + Index: 0.00MB
    wp_revslider_static_slides: Data: 0.00MB + Index: 0.00MB
    wp_signups: Data: 0.00MB + Index: 0.00MB
    wp_social_users: Data: 0.00MB + Index: 0.00MB
    wp_termmeta: Data: 0.00MB + Index: 0.01MB
    wp_terms: Data: 0.00MB + Index: 0.01MB
    wp_term_relationships: Data: 0.00MB + Index: 0.01MB
    wp_term_taxonomy: Data: 0.00MB + Index: 0.01MB
    wp_usermeta: Data: 0.05MB + Index: 0.04MB
    wp_users: Data: 0.00MB + Index: 0.01MB
    wp_waiting: Data: 0.00MB + Index: 0.00MB
    wp_wc_download_log: Data: 0.00MB + Index: 0.00MB
    wp_wc_webhooks: Data: 0.00MB + Index: 0.00MB
    wp_wfBadLeechers: Data: 0.00MB + Index: 0.00MB
    wp_wfBlockedCommentLog: Data: 0.00MB + Index: 0.00MB
    wp_wfBlockedIPLog: Data: 0.00MB + Index: 0.00MB
    wp_wfBlocks7: Data: 0.00MB + Index: 0.00MB
    wp_wfConfig: Data: 0.36MB + Index: 0.01MB
    wp_wfCrawlers: Data: 0.00MB + Index: 0.00MB
    wp_wfFileChanges: Data: 0.00MB + Index: 0.00MB
    wp_wfFileMods: Data: 0.48MB + Index: 0.11MB
    wp_wfHits: Data: 0.14MB + Index: 0.03MB
    wp_wfHoover: Data: 0.00MB + Index: 0.00MB
    wp_wfIssues: Data: 0.00MB + Index: 0.00MB
    wp_wfKnownFileList: Data: 0.97MB + Index: 0.12MB
    wp_wfLeechers: Data: 0.00MB + Index: 0.01MB
    wp_wfLiveTrafficHuman: Data: 0.00MB + Index: 0.00MB
    wp_wfLocs: Data: 0.00MB + Index: 0.00MB
    wp_wfLogins: Data: 0.01MB + Index: 0.00MB
    wp_wfNet404s: Data: 0.00MB + Index: 0.00MB
    wp_wfNotifications: Data: 0.00MB + Index: 0.00MB
    wp_wfPendingIssues: Data: 0.00MB + Index: 0.00MB
    wp_wfReverseCache: Data: 0.00MB + Index: 0.00MB
    wp_wfScanners: Data: 0.00MB + Index: 0.00MB
    wp_wfSNIPCache: Data: 0.00MB + Index: 0.00MB
    wp_wfStatus: Data: 0.06MB + Index: 0.03MB
    wp_wfVulnScanners: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_category: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_form: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_lock: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_master: Data: 0.02MB + Index: 0.00MB
    wp_wp_pro_quiz_prerequisite: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_question: Data: 1.24MB + Index: 0.03MB
    wp_wp_pro_quiz_statistic: Data: 0.01MB + Index: 0.00MB
    wp_wp_pro_quiz_statistic_ref: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_template: Data: 0.00MB + Index: 0.00MB
    wp_wp_pro_quiz_toplist: Data: 0.00MB + Index: 0.00MB
    wp_wsluserscontacts: Data: 0.00MB + Index: 0.00MB
    wp_wslusersprofiles: Data: 0.00MB + Index: 0.00MB
    
    ### Post Type Counts ###
    
    attachment: 121
    bmt-member-type: 4
    bp-email: 32
    cdfc: 1
    condition_group: 1
    custom_css: 1
    customize_changeset: 9
    forum: 1
    jetpack_migration: 2
    mc4wp-form: 1
    nav_menu_item: 33
    page: 39
    post: 24
    product: 12
    revision: 1003
    scheduled-action: 16
    sfwd-certificates: 1
    sfwd-courses: 7
    sfwd-lessons: 36
    sfwd-quiz: 38
    sfwd-topic: 147
    shop_order: 7
    shop_subscription: 5
    sidebar: 1
    sp_wps_shortcodes: 1
    topic: 4
    wc_membership_plan: 6
    wcps: 1
    woocarousel: 1
    wpachievements: 3
    wpcf7_contact_form: 1
    wpe_product_carousel: 1
    yith_wcps_type: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ❌
    					Your store is not using HTTPS. Learn more about HTTPS and SSL Certificates.
    Hide errors from visitors: ✔
    
    ### Active Plugins (50) ###
    
    Addons for WPBakery Page Builder: by Livemesh – 1.9.1
    Akismet Anti-Spam: by Automattic – 4.0.7
    bbPress: by The bbPress Community – 2.5.14
    Better Search Replace: by Delicious Brains – 1.3.2
    Boss for LearnDash: by BuddyBoss – 1.3.0
    BP Redirect To Profile: by Brajesh Singh – 1.2.2
    BuddyBoss Inbox: by BuddyBoss – 1.1.3
    BuddyBoss Media: by BuddyBoss – 3.2.4
    BuddyBoss One Click Installer: by BuddyBoss – 1.0.6
    BuddyBoss Wall: by BuddyBoss – 1.3.3
    BuddyPress for LearnDash: by BuddyBoss – 1.2.4
    BuddyPress Member Types: by BuddyBoss – 1.1.2
    BuddyPress: by The BuddyPress Community – 3.0.0
    Contact Form 7: by Takayuki Miyoshi – 5.0.2
    Force HTTPS: by LittleBizzy – 1.0.6
    Google Doc Embedder: by Kevin Davis
    Dan Lester – 2.6.4
    
    Insert or Embed Articulate Content into WordPress Trial: by Brian Batt – 4.292
    WPBakery Page Builder: by Michael M - WPBakery.com – 5.4.7
    LearnDash Content Cloner: by WisdmLabs – 1.2.2
    LearnDash & bbPress Integration: by LearnDash – 2.0.2.1
    LearnDash Course Grid: by LearnDash – 1.4.1
    LearnDash ProPanel: by LearnDash – 2.1.3
    LearnDash WooCommerce Integration: by LearnDash – 1.4.0 – Not tested with the active version of WooCommerce
    Mega Addons For Visual Composer: by Nasir – 2.2
    Nextend Social Login: by Nextendweb – 3.0.10
    Nextend Social Login Pro Addon: by Nextendweb – 3.0.8
    WooCommerce Product Carousel Slider: by ADL Plugins – 3.0.2 – Not tested with the active version of WooCommerce
    Restrict Content: by Pippin Williamson – 2.2.3
    Slider Revolution: by ThemePunch – 5.4.7.3
    LearnDash LMS: by LearnDash – 2.5.8.2
    Simple Buddypress Profile Privacy: by Justin Hansen – 0.7.7
    String Locator: by Clorith – 2.3.0
    Theme My Login: by Jeff Farthing – 6.4.16
    Uncanny LearnDash Toolkit: by Uncanny Owl – 2.4.2
    Uncanny LearnDash Toolkit Pro: by Uncanny Owl – 2.3.1
    UpdraftPlus - Backup/Restore: by UpdraftPlus.Com
    DavidAnderson – 1.14.11
    
    Essential WPBakery Page Builder (formerly Visual Composer) Addons: by themebon – 1.9.1
    Waiting: by Plugin Builders – 0.4.5
    WC4BP -> WooCommerce BuddyPress Integration (Premium): by ThemeKraft – 3.1.4 – Not tested with the active version of WooCommerce
    WC4BP -> Subscriptions: by ThemeKraft – 1.1.0 – Not tested with the active version of WooCommerce
    WC4BP -> BuddyPress xProfile Checkout Manager: by ThemeKraft – 1.3.0 – Not tested with the active version of WooCommerce
    WooCommerce Colors: by WooThemes – 1.0.7 – Not tested with the active version of WooCommerce
    WooCommerce PayPal Express Checkout Gateway: by WooCommerce – 1.5.5
    WooCommerce Stripe Gateway: by WooCommerce – 4.1.6
    WooCommerce Memberships: by SkyVerge – 1.10.4
    WooCommerce Social Login: by SkyVerge – 2.5.2
    WooCommerce Subscriptions: by Prospress Inc. – 2.2.21
    WooCommerce: by Automattic – 3.4.1 – 3.4.2 is available
    WP File Manager: by mndpsingh287 – 2.7
    WP Rollback: by WordImpress – 1.5
    
    ### Settings ###
    
    API Enabled: ✔
    Force SSL: ✔
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: course (course)
    external (external)
    grouped (grouped)
    simple (simple)
    subscription (subscription)
    variable (variable)
    variable subscription (variable-subscription)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    ### WC Pages ###
    
    Shop base: ❌ Page not set
    Cart: #562 - /cart/
    Checkout: #9648 - /woocommerce-checkout/
    My account: #9671 - /membership/
    Terms and conditions: ❌ Page not set
    
    ### Theme ###
    
    Name: Boss. Child Theme
    Version: 2.4.3
    Author URL: http://www.buddyboss.com
    Child Theme: ✔
    Parent Theme Name: Boss.
    Parent Theme Version: 2.4.6
    Parent Theme Author URL: https://www.buddyboss.com
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Overrides: –
    
    ### subscriptions ###
    
    WCS_DEBUG: ✔
    						No
    Subscriptions Mode: ✔
    						Live
    Subscriptions Template Theme Overrides: –
    Report Cache Enabled: ✔
    						Yes
    Cache Update Failures: ✔
    						0 failure
    
    #273992
    FrankCaban
    Participant

    Hello I was wondering is you guys can help me out:

    I want to build a member’s area (for a dating/matchmaking hybrid) where after registration (or during it, doesnt matter) they get a compatibility test. (doesnt matter if they are in a seperate page or as part of registration, they just need to integrate with everything else im gonna describe)

    After they join they are directed to a page where they choose 2 paid levels of service and 1 free.
    If they select a membership they pay and are redirected to a Consultation Appointment calendar and after that they become a free member (we manually upgrade them once the matchmaker approves in person) the free ones go straight to the member’s area as free.
    Now unlike many sites, need to be able to restrict communication, the highest level (VIP) would have a video profile (with photo option) with his name age occupation and mile range (automatically there based on the other viewers location), the 3 best matches based on compatibility and a “Request button” that allows them to be requested for a date.
    The requested then sees it in his activity field or wherever and accept or denies. If rejected the other member simply receives a notification, if accepted the accepting person gets a pop up (or other page doesnt matter) and sets Date, Time, and pickup location address, that is then notified to both parties and the administrators (we make arrangements for them).
    The 3 best matches in a VIP profile have a request button too, however this invites them to a group date which they accept or deny just like a regular request.
    They also will be notified by admins about major special events in a notification with the same Accept/Reject format, if so we are notified that they accepted. Regular members are not invited to the events.
    Normal members can request, have a request button themselves, search the directory (more on that later) and pay for events they see in the Events tab, but they do not get invites to them, and they have to pay a fee.
    Free members can only see people in the directory, nothing else, no events tab.
    Events Calendar: there will be a tab in all paid members profile leading to an events calendar. if VIP the member simply selects the event and if interested clicks to attend (no payment). If non VIP a pop-up appears to make them pay a fee and after processing they are registered for the event.

    Directory and Search page (either combined or separate): people should be able to search members based on profile parameters entered during registration/compatibility test (age, gender, etc etc, the fields for the search are the profile info) If combined they see all members and they can then filter out, if separate they use the parameters to bring up result.

    Based on that:
    I guess the ability to add custom tabs for events etc (in here its personal, mentions, favorite) basically to integrate that into functions.

    Any i mean ANY advice will be appreciated, thanks to Varun for suggesting “Match me for Buddypress”
    Anything else people have in regards to how to make this possible even if i have to create somethings outside of buddypress and then bring them back etc, workarounds, plugins, anything will be appreciated.
    I don’t know if it’s allowed but if anyone can implement that for a reasonable fee, feel free to let me know how to contact you, but im looking for advice, anyone offering something has to give the plan at the risk of me implementing it and not taking services, services accepted would be out convenience due to time restraints (very urgent)

    Thank you in advance and thank you for anyone who read this.
    -F.C.

    #273751
    Jonas
    Participant

    I had some issues with this earlier too, using the code supplied in this thread should clear up your issue.

    Here’s the code if you’re unable to click the link for some reason. You should put it in your bp-custom.php file.

    function toa_check_page_reqiurement_and_lie_to_buddypress ($is, $component) {
        global $bp;
        if ($is || "activity" !== $component) return $is;
        if ((defined('BP_GROUPS_SLUG') && bp_is_groups_component() && 'activity' == $bp->current_action)){
            return true;
        }
        return $is;
    }
    function toa_setup_activity_filter () {
        add_filter('bp_is_current_component', 'toa_check_page_reqiurement_and_lie_to_buddypress', 10, 2);
    }
    function toa_teardown_activity_filter () {
        remove_filter('bp_is_current_component', 'toa_check_page_reqiurement_and_lie_to_buddypress', 10);
    }
    add_action('bpfb_init', 'toa_setup_activity_filter');
    add_action('bpfb_add_cssjs_hooks', 'toa_teardown_activity_filter');
    #273403
    richardrcook2
    Participant

    Thank you for replying to my question Ray. I wasn’t able to load the console the way you asked, so I right-clicked on the activity page and clicked on “Inspect Elements (Q).” I clicked the console tab and pasted everything that was underneath it in this message. I hope that was the console tab you were referring to. Here is what I found:

    JQMIGRATE: Migrate is installed, version 1.4.1
    jquery-migrate.min.js:2:542
    whatsNewOptionsIsHidden true
    jquery.customSelect.js:83:29
    injectLoop11
    injectLoop11.js:2:1
    message
    message { target: Window, isTrusted: false, data: {…}, origin: “null”, lastEventId: “”, source: Restricted https://romancingrarehearts.com/chronic-odor-info/embed/#?secret=ClI98jtN2m, ports: Restricted, eventPhase: 0, bubbles: false, cancelable: false, … }
    injectLoop11.js:66:5
    message
    message { target: Window, isTrusted: false, data: {…}, origin: “null”, lastEventId: “”, source: Restricted https://romancingrarehearts.com/chronic-odor-info/embed/#?secret=ClI98jtN2m, ports: Restricted, eventPhase: 0, bubbles: false, cancelable: false, … }
    injectLoop11.js:66:5
    message
    message { target: Window, isTrusted: false, data: {…}, origin: “null”, lastEventId: “”, source: Restricted https://romancingrarehearts.com/chronic-odor-info/embed/#?secret=ClI98jtN2m, ports: Restricted, eventPhase: 0, bubbles: false, cancelable: false, … }
    injectLoop11.js:66:5

    #273314
    Venutius
    Moderator

    I’ve just raised a ticket about not being able to comment on activity items in the group activity page: https://buddypress.trac.wordpress.org/ticket/7854#ticket

    IF you switch to BP Nouveau in settings>>BuddyPress>>Options you will get a BP Nouveau item in the customize options list.

    #273312

    In reply to: Mobile activity menu

    Venutius
    Moderator

    Hi there, some things to check:

    wp-content/plugins/bp-custom.php - general bp customisations
    wp-content/themes/your-child-theme/functions.php - general wp customisations
    wp-content/your-child-theme/buddypress/activity etc. bp page overloads

    Those three files/locations are where most customisations will be done, but they could also be done via plugins so you should check what you have loaded as well.

Viewing 25 results - 101 through 125 (of 745 total)
Skip to toolbar