Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddyboss'

Viewing 25 results - 451 through 475 (of 691 total)
  • Author
    Search Results
  • wolfpup64
    Participant

    Hey Buddies, first off the obligatory I’m totally new to this stuff, php makes sense but I haven’t the faintest grasp of the language or the logic. I got asked to build a community page for a smallish company and I’ll hopefully get a position more fitting my background if I do a decent job.

    Running:
    Current version of WordPress/BuddyPress
    The BuddyBoss Boss. Theme
    gVectors wpForo

    Basically what I’m trying to do is create a link in the BuddyPress Profile page tabs that directs to the wpForo forum profile, to better integrate the 2 profiles. I managed to create the tab by bogarting some code from some other support page, however the link is dictated by a slug and if I remove the slug the whole tab disappears. The code is located in a mu-plugin and this is what it looks like:

    function add_communityprofile_tab() {
    	global $bp;
    	
    	bp_core_new_nav_item( array(
    		'name'                  => 'Community',
    		'slug'                  => 'communityprofile',
    		'parent_url'            => $bp->displayed_user->domain,
    		'parent_slug'           => $bp->profile->slug,
    		'screen_function'       => 'communityprofile_screen',			
    		'position'              => 200,
    		'default_subnav_slug'   => 'communityprofile'
    	) );
    
    }
    add_action( 'bp_setup_nav', 'add_communityprofile_tab', 100 );

    The url of the profile pages is

    http://localhost/wordpress/users/*username*/profile/

    The tab naturally links to

    http://localhost/wordpress/users/admin/communityprofile/

    what I am trying to link to is

    http://localhost/wordpress/community/profile/<displayed_user>/

    at least I’m pretty sure displayed_user would get the job done.

    I looked into exploding and parsing the URL but that seemed more trouble than it was worth. I’ve spent quite a bit of time stubbornly trying to figure this out hahaha. But I think this is something that anyone with a decent knowledge of what they are doing could solve quickly, I’d really appreciate it if someone could give me a hand.

    #258971
    Paul Wong-Gibbs
    Keymaster

    BuddyPress doesn’t have a wall feature like how you think it does. You’ll need to check out a Wall plugin for BuddyPress, maybe http://www.buddyboss.com/product/buddyboss-wall/

    ckchaudhary
    Participant

    Hi there,

    http://www.buddyboss.com/product/buddyboss-reply-by-email/ this plugin lets your users communicate directly from their inbox.

    If you rather want to just stop those emails completely, you can try the following code

    add_action( 'messages_message_sent', 'unhook_messages_notification_new_message', 9 );
    function unhook_messages_notification_new_message(){
        remove_action( 'messages_message_sent', 'messages_notification_new_message', 10 );
    }

    That should work.

    shanebp
    Moderator

    You’ll need custom code for that.
    For example: http://www.buddyboss.com/product/buddyboss-reply-by-email/

    #258391
    bigkahunaburger
    Participant

    Thanks @danbp

    That’s kind of like the BuddyBoss Media plugin we almost used.

    BuddyBoss Media

    It still has the problem of storing images on your server.

    I wish I knew what they changed to make the old trick stop working. Maybe then I could reverse engineer it.

    #258356

    In reply to: 2nd Registration form

    danbp
    Participant

    Which plugin did you use for the 2nd register page ?

    WP need for any user, a username, an email and a password. That’s mandatory even if you have 2 or 50 register page.

    If you use only BP’s default register page and add a select box where you can choose Teacher or Student, you can afterwards give teachers a role of editor. That’s do able with built-in member_type

    Also, depending the role with help of conditionnal field plugin, you can show fields for teachers only, for students only or both.

    Another solution would be to add manually the teachers directly from within the admin. Usually, a school has less teachers as students. This shouldn’t be to difficult to add 10 or 20 teachers. This can also be handy as you can give them a lower capability (ie author) and attribute “editor” to only one or two of them, which will be in charge of students registering and dispatching. So in fact, only students have to register from front-end.

    Another alternative would be to use what’s described here.

    #258214
    shughesd
    Participant

    Hello,

    I have the following error on the bottom of my registration page, and there is no submit button.

    Fatal error: Call to undefined function groups_get_total_group_count() in /home/freeaupa/public_html/wp-content/plugins/buddypress-registration-groups-1/includes/bp-registration-groups.php on line 53

    http://freeaupair.com/register/

    I am using Member Types by BuddyBoss.

    Thank you in advance!!

    #257053
    bigkahunaburger
    Participant

    You may want to look at creating member types. Then you could add the meta as a div class and style them via css:

    Member Types

    https://gist.github.com/imath/3a5c5ade44eae997fdfd

    If you don’t have the ability to code or hire someone that does you may want to try some of the member type plugins out there:

    BuddyPress Member Types

    https://wordpress.org/plugins/bp-member-type-generator/

    #257780
    pixelpushermama
    Participant

    @djpaul Any news on this? That mail bridge plug in did not work for us. We are currently running WP 4.5.3 (I know there is an update available)
    BuddyPress Version 2.6.2
    BuddyPress Edit Activity 1.0.8
    BuddyPress Follow Version 1.2.2
    BuddyPress Forum Editor Version 1.0
    BuddyPress Global Search Version 1.1.4

    Along with
    bbPress 2.5.10
    BuddyBoss Wall Version 1.2.7
    BuddyBoss Media Version 3.1.9
    Along with Memberium and i2SDK

    These appear to be a few revisions beyond when we asked originally and it is still not functioning.
    It has been several months since we have had an operational email notification capability,which is a problem for us, running a paid site we need full functionality. Can you reccomend anything to try or anyone we should consult with?

    #257735
    mlwilkerson
    Participant

    Regarding my caveat above (that BP activities were not showing up in the BP news feed of a non-admin user), I have discovered that two other plugins I have been using are effecting the behavior here:

    1. BuddyBoss Wall: this is not breaking anything, but it does change what the activity stream looks like to the user. In particular, it adds a “news stream” view, similar to Facebook. So for anyone reading this later wondering what I meant by “news stream” above, that’s apparently a BuddyBoss Wall specific view.
    2. BuddyPress Activity Privacy: It was when I disabled this plugin that the non-admin user started seeing the activity updates in his news feed as I would have expected. And I’m not saying that this plugin was breaking anything necessarily—could easily have just been some configuration mixup on my part. But it was time for me to remove this plugin anyway because it was adding unnecessary complexity to my site.

    So removing the Activity Privacy plugin resolved the caveat. Scenario 4 is now working for me just as I need it to.

    #257668
    Paul Wong-Gibbs
    Keymaster
    #257657
    sharmavishal
    Participant

    if you are a non coder would suggest you look at this paid plugin

    BuddyPress User Blog

    does what u need

    #257507

    In reply to: Front-End Publishing

    Earl_D
    Participant

    I have used buddyblog which requires BP simple front end post from the same developer and I have also used User Blog They have different interfaces but function similarly.

    #257454
    etavio
    Participant

    @Buddycore — not entirely familiar with that process so I can’t speak to it, thanks for your continued suggestions though.


    @functionmunchkin
    — good idea except for the fact that I use theme from BuddyBoss that has an infinite scroll activity stream, so my goal was to make it work with that as opposed to the way around and having to set a paginated activity. Thanks for the ingestion though — I may use that plugin for other parts of the site.

    #257334
    aelalfey
    Participant

    Thank you for your help. Problem solved. It was a theme issue. I use buddyboss theme “Sensei”. Just applied the theme update and the problem solved.

    lisaleague
    Participant

    Hi, I’m getting these errors for BP Remove Profile Links plugin and would like to know how to address, thanks

    [Sat Aug 06 11:09:33.881878 2016] [:error] [pid 8371] [client 103.232.127.8:36983] PHP Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method bphelp_remove_profile_links::remove_xprofile_links() should not be called statically in /nas/content/live/sitename/wp-includes/plugin.php on line 525
    [Sat Aug 06 11:09:36.259489 2016] [:error] [pid 19510] [client 103.232.127.8:36999] PHP Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method bphelp_remove_profile_links::remove_xprofile_links() should not be called statically in /nas/content/live/sitename/wp-includes/plugin.php on line 525, referer: http://sitename.wpengine.com/members/sitename/achievements/

    1. Which version of WordPress are you running?
    4.5.3

    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?
    root
    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    4.5.2
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Y
    6. Which version of BP are you running?
    2.6.2
    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?
    BadgeOS
    Version 1.4.8.2 | By LearningTimes | View details

    BadgeOS Community Add-On
    Version 1.2.3 | By Credly | View details

    bbPress
    Version 2.5.10 | By The bbPress Community | View details

    Boss for Sensei
    Version 1.0.9 | By BuddyBoss | Visit plugin site

    BP Remove Profile Links
    Version 1.2 | By @bphelp | Visit plugin site

    BuddyBoss One Click Installer
    Version 1.0.3 | By BuddyBoss | Visit plugin site

    BuddyPress
    Version 2.6.2 | By The BuddyPress Community | View details

    BuddyPress for Sensei
    Version 1.1.1 | By BuddyBoss | View details

    BuddyPress Global Search
    Version 1.1.4 | By BuddyBoss | View details

    PHP Compatibility Checker
    Version 1.1.2 | By WP Engine | View details

    Sensei
    Version 1.9.6 | By WooThemes | View details

    Sensei Course Participants
    Version 1.1.3 | By WooThemes | View details

    Sensei Media Attachments
    Version 1.0.0 | By WooThemes | View details

    Templatera
    Version 1.1.11 | By WPBakery | Visit plugin site

    WooCommerce
    Version 2.6.4 | By WooThemes | View details | Docs | API Docs | Premium Support

    WooCommerce Helper
    Version 1.7.0 | By WooCommerce | Visit plugin site

    WPBakery Visual Composer
    Version 4.12 | By Michael M – WPBakery.com | Visit plugin site

    9. Are you using the standard WordPress theme or customized theme?
    Boss.Version: 2.2.2
    By BuddyBoss.com

    10. Have you modified the core files in any way?
    no

    11. Do you have any custom functions in bp-custom.php?
    no

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    Version 2.5.10

    13. Please provide a list of any errors in your server’s log files.
    [Sat Aug 06 11:09:33.881878 2016] [:error] [pid 8371] [client 103.232.127.8:36983] PHP Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method bphelp_remove_profile_links::remove_xprofile_links() should not be called statically in /nas/content/live/sitename/wp-includes/plugin.php on line 525
    [Sat Aug 06 11:09:36.259489 2016] [:error] [pid 19510] [client 103.232.127.8:36999] PHP Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method bphelp_remove_profile_links::remove_xprofile_links() should not be called statically in /nas/content/live/sitename/wp-includes/plugin.php on line 525, referer: http://sitename.wpengine.com/members/sitename/achievements/

    14. Which company provides your hosting?
    WPEngine

    #257084
    thilina82
    Participant

    Hi,

    I am new to wordpress and launced a buddypress site recently.

    I want to customize the registration confirmation text and the text on the top of registration page “Registering for this site is easy. Just fill in the fields below, and we’ll get a new account set up for you in no time.”.

    I changed and saved both text in the register.php file but no effect. Register page still shows the old Text. I tried deactivating BuddyPress and re-activating again. even that did not help.

    I am using BuddyPress 2.5.3 with BuddyBoss theme version 2.1.3

    Appreciate your help to solve this. Thanks in Advance.

    Thilina.

    #256922
    sharmavishal
    Participant

    i think buddyboss people would help u more on this as its their theme

    #256785
    sharmavishal
    Participant

    check this @daragott …. danbp has given live examples

    2.2 Member Types – Setting user member types during registration (xProfile)

    this is a paid plugin

    BuddyPress Member Types

    this is a free plugin by brajesh

    BuddyPress Xprofile Member Type Field

    just google “buddypress member types” this would be in top 10 results

    #256739
    rvnamb
    Participant

    I use buddyboss media plugin

    allancaeg
    Participant

    There are now BuddyPress links for WordPress menus: https://codex.buddypress.org/getting-started/buddypress-links-in-wordpress-menus/

    How do I display the user avatar photo, though? BuddyPress forum itself does it, but I think it’s a slighly different approach as its the WP admin bar:

    View post on imgur.com

    But that’s the effect I’m going for, for my main header menu.

    The BuddyBoss theme exhibits this nicely with their user profile dropdown menu:

    View post on imgur.com

    How do I display the photo alongside the profile menu link?

    #256145
    socialc
    Participant

    Activity stream updates support oEmbed for popular sites you can see supported sites here https://codex.wordpress.org/Embeds#Okay.2C_So_What_Sites_Can_I_Embed_From.3F

    If you want direct uploading on the activity stream there are a few plugin choices that exist. I think one is called RTMedia and there is also one from BuddyBoss.

    With regard to activity posts going to the top on older items. I can’t help you with that at the moment, maybe someone else will come along.

    jakobhannerz
    Participant

    I just bought the Buddyboss marketplace solution. What I am about to build is a marketplace for physical products. The products will be delivered by hand, not posted.

    As what I can tell the Buddyboss marketplace solution gives us the opportunity to offer transactions and shipping. Although, what I am looking for is simply a catalog of products where buyers can browse through and contact the vendors to schedule a meet-up (they will solve the payment on their own). With this I would instead want the ability to charge the vendors for every product that is uploaded.

    Is there any way of solving this? I was recommended a plugin for disabling Woocommerce.
    Woocommerce Catalog Visibility Options
    It could work, though I still need a way to charge vendors to upload products.

    Please leave a comment if you have any idea how to solve this. Thanks!

    Jakob

    r-a-y
    Keymaster

    @strothi – I’ve split your post into a new topic.

    Regarding your error, I’m guessing it is a problem with the BuddyBoss Reorder Tabs plugin.

    Can you confirm? If not, can you list all your BuddyPress plugins?

    Slava Abakumov
    Moderator

    You can use BuddyPress Member Types Generator plugin to create members types.

    Or use BuddyPress Member Types plugin, they have a bit different functionality. The 2nd one seems to have more features.

    Different “Types of feeds” is not easily achievable, only with custom coding.

    Custom login and registration pages – lots of solutions for custom login. Custom registration page is limited to BuddyPress, there is no plugin, that can do anything with it. You will need to dive into templating and custom styles.

Viewing 25 results - 451 through 475 (of 691 total)
Skip to toolbar