Search Results for 'buddypress'
-
AuthorSearch Results
-
January 19, 2015 at 12:10 am #232515
In reply to: How to "Like" ?
disha76
Participant@ubernaut @henrywright http://jetpack.me/2013/06/10/moving-sharing-icons has some instructions. Do you know in which of the buddypress files we need to put these to show “Likes” button in the river?
January 18, 2015 at 12:25 pm #232494In reply to: Group URL clashes with page URL
Henry Wright
ModeratorPossibly. That’s what you’ll need to check. Quite often the problem is theme- or plugin-related. My advice is to set up a test site which replicates your production site. Then you can make changes (for testing purposes such as this) without impacting your live website.
If the problem remains after you’ve disabled all plugins and activated the default theme then you can raise a ticket on Trac. The core development team can then take a look.
January 18, 2015 at 11:48 am #232491In reply to: Group URL clashes with page URL
Ivalde
ParticipantI did believe BuddyPress was made for WordPress usage…
January 17, 2015 at 10:43 pm #232482In reply to: [Resolved] What is the Member Activity URL?
FlickChicks
Participant@henrywright thanks for the reply!
I’m not sure I explained myself well. What I’m looking for is after the user has signed up and comes back another time and logs in. When they log in I don’t want them to go to the homepage, I want them to go to their activity page which the “Social Login” plugin will automatically do if I give it the right URL code.
For example, for post names the permalinks code is http://mywebsite.com/sample-post/ and then it fills in the part that says “sample-post” with the name of the page, for instance it would fill in “About” for the about page so the permalink would look like: http://mywebsite.com/about/. I need the code for how Buddypress fills in the part that would put in the username. I was thinking it might be /user-name/ or /%username%/ or something like that, but they didn’t work.
January 17, 2015 at 10:41 pm #232481shanebp
ModeratorBuddyPress encourages its users to find and report bugs.
And they are even happier when a bug report includes a fix!
If you have found a bug, please open a ticket on trac.January 17, 2015 at 5:24 pm #232471John Clause
ParticipantI am sorry, I thought this is their support system. I will report it there then.
Here is one more:PHP Notice: Undefined offset: 1 in /wp-content/plugins/buddypress/bp-activity/bp-activity-functions.php on line 1769Does this belong here?
January 17, 2015 at 5:15 pm #232469In reply to: Add an item to submenu of Activity
danbp
Participantbp_core_new_nav_item doesn’t accept
linkorhrefparameters.
And the slug use /bp_loggedin_user_domain/$slug/ so you can’t add directly an arbitrary link with this parameter.bp_core_new_nav_itemandbp_core_new_subnav_itemare respectively the buddy menu and the sub-menu, with each his own parameters. Same technique, but slightly different.But you can hook into the function to modify the slug array, like this:
function bpfr_menubar_link() { global $bp; $bp->bp_nav[$slug] = array( 'name' => 'My super link', 'slug' => 'super_link', 'link' => 'https://buddypress.org', 'css_id' => 'super-link', 'position' => 20 ); } add_action( 'bp_core_new_nav_item', 'bpfr_menubar_link', 999 );Be aware that this nav menu is always user dependant, meaning that you will only see that link when you’re on your profile page. It won’t show when you’re on another members profile or not logged in. π
January 17, 2015 at 1:14 pm #232452In reply to: groups pagination not found – after server move
danbp
Participantpagination itself has nothing to do with the DB. bp-options contains only the number of items to show per page.
Do you use a custom pagination loop in bp-custom.php or child-theme’s functions.php ?
Or any other custom function related to groups ?
Did you checked your server error log ?
Have you some js or css errors ?
Try to modify the number of groups per page to show on the group directory. From 15 to 5 for example.
Or try to enter the url like this: mysite dot com/groups/?grpage=2&num=7January 17, 2015 at 1:06 pm #232450Henry Wright
ModeratorHi @lustek
Regarding your new question, BuddyPress uses
wp_hash()to hash the user’s ID with the result used as the activation key. So for example:$activation_key = wp_hash( $user_id )January 17, 2015 at 12:53 pm #232449In reply to: import/export groups
Paul Wong-Gibbs
KeymasterUnfortunately, we don’t have an exporter/importer for BuddyPress yet. I’ve asked around to see if anyone’s built one, but you might have to end up exporting/importing the MySQL database tables, which can be pretty tricky.
January 17, 2015 at 12:51 pm #232448Paul Wong-Gibbs
KeymasterWhat is the “mindfulness-resources” page — do you have that set as the home page for your site, or is it mapped to one of the BuddyPress components (which one)?
It would also be useful to know what plugins and themes you have on your site. I wonder if something’s messing with the rewrite rules, we can try to help you figure it out.
January 17, 2015 at 12:47 pm #232447Paul Wong-Gibbs
KeymasterI’m not sure, but it sounds like your line of thought is valid. Using a cookie for this seems a bit weird, but hey, that’s how it’s been implemented at the moment. π
If when you finish working through things, you still think you’re onto a bug with the missing cookie idea, please would you submit an explanation of the issue over on our bug tracker at https://buddypress.trac.wordpress.org/newticket ?
January 16, 2015 at 11:38 am #232431In reply to: Determine Profile Template File by Member Type
Henry Wright
ModeratorTo my knowledge, this isn’t built in to the current template hierarchy.
Ref:
You could open a ticket on Trac requesting the enhancement (try searching open tickets first to make sure it isn’t already planned).
January 16, 2015 at 7:25 am #232429BuddyBoss
ParticipantDefault BP does allow to see other usersβ Favorits in the Favorit tab in Profile page β why does Buddyboss kills this? At least site admin should be able to turn it on or off.
I see what you mean. We will consider adding an admin option.
Buddyboss is never meant to load every plugin but if a chosen few are bundled, it will be really good rather than re-inventing wheels at premium plugins, features of which are already available in the WP-BP repo. If users like us see thay they are well integrated into the Buddyboss look and feel there can be more sales of the Buddyboss theme actually.
I appreciate all of the feedback, very much. Our plan is to expand on these plugins and make them more feature rich, launch more premium plugins and themes, and also free plugins for the community over the year.
We launched two free plugins this week which you may be interested in:
Search all BP components in one unified dropdown:
https://wordpress.org/plugins/buddypress-global-search/Edit BP activity from the front-end:
https://wordpress.org/plugins/buddypress-edit-activity/January 16, 2015 at 6:47 am #232428In reply to: Add an item to submenu of Activity
deshmukh
ParticipantThis works great. Thanks.
I could also change
'link' => bp_get_activity_directory_permalink(),
to
'link' => 'http://google.com',and it worked as expected.
I also tried my hand at bp_core_new_nav_item
('<li>https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/</li>')But I am unable to add an arbitrary link to nav item. If I add a link declaration as in the case of sub nav. it gives out an error.
Parse error: syntax error, unexpected ''link'' (T_CONSTANT_ENCAPSED_STRING), expecting ')' in /.../wp-content/themes/nu-white-child/functions.php on line 35Probably because the function does not expect a ‘link’ parameter.
How do I add an arbitrary link to the nav item?
January 15, 2015 at 7:59 pm #232422In reply to: BuddyPress 2.1.1 and WordPress 4.1
danbp
ParticipantSeems that the jQuery library is not properly loaded in your dashboard…
You have tio debug your install.
Activate one of WP’s twenty theme and deactivate all plugins but BuddyPress and see if it works.
Than you have to reactivate/test all plugins one by one, and finally go back to initial theme, so you can isolate the culprit.January 15, 2015 at 7:37 am #232405In reply to: Members Loop – Filter by User Role
coffeywebdev
ParticipantI would love to!
But my solution is basically an s2 membership hack.. so it doesn’t really apply to buddypress..
I just hacked up my members loop, and stuck some s2 membership code in there.
January 15, 2015 at 5:19 am #232400r-a-y
KeymasterThe problem is you are attempting to use BuddyPress functions when they do not exist during activation / reactivation in your theme’s functions.php or templates.
When specifically relying on plugin functions, wrap those function calls with:
if ( function_exists( 'THE_FUNCTION_YOU'RE_USING' ) ) { // YOUR CODE HERE }January 15, 2015 at 12:21 am #232390In reply to: Customize BP navigation
Henry Wright
ModeratorRegarding point 6, did you see @danbp’s help?
https://buddypress.org/support/topic/add-an-item-to-submenu-of-activity/
January 14, 2015 at 5:58 pm #232299In reply to: Remove Avatar Mouseover Showing Email Address?
r-a-y
KeymasterI think I’ve noticed this in the past as well.
If you feel comfortable posting this to our ticketing system, please do:
https://buddypress.trac.wordpress.org/newticket (use the same credentials as you use here)January 14, 2015 at 4:13 pm #232277In reply to: sign up page not working need help
jkpi56
ParticipantScreen Shot buddypress 2015-01-13 at 8.33.03 PM
January 14, 2015 at 4:11 pm #232276In reply to: sign up page not working need help
jkpi56
ParticipantI do not see were to assign any pages and I thought buddypress creates the pages. I need someone on the phone please? 850 291 8540
John
January 14, 2015 at 3:57 pm #232274In reply to: sign up page not working need help
@mercime
Participant@jkpi56 have you enabled registration at Settings > General? Are registration and activation pages assigned to Pages in Settings > BuddyPress > Pages?
January 14, 2015 at 3:54 pm #232273@mercime
Participant@serendipitycss3 thank you for reporting the issue. In the meantime, please go to this page https://wordpress.org/plugins/search.php?q=buddypress
January 14, 2015 at 3:33 pm #232272In reply to: Integrate BP Navigation in WP Menus
-
AuthorSearch Results