Search Results for 'buddypress'
-
AuthorSearch Results
-
July 11, 2011 at 7:14 pm #116153
In reply to: [New Plugin] BuddyPress Group Forum Extras
lockamiz23
MemberCould someone please please tell me how to make ajax quote work with tinymce? I need it to work i’ll pay someone
July 11, 2011 at 5:11 pm #116146In reply to: How to make an exclusive website using buddypress?
David Carson
ParticipantDuplicate post. I replied to your other post yesterday – https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/making-an-exclusive-login/
It’s probably better to keep any conversation going on that orignal post.
buddypress.org is undergoing some maintenance and search/activity is hard to keep track of right now.
July 11, 2011 at 5:09 pm #116145In reply to: Display latest member posts
mike62
MemberJust found this: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/get-member-id-when-viewing-member-page/ going to give it a try.
July 11, 2011 at 3:03 pm #116142thinkluke
MemberHi Roger, I jumped to a solution then, when in fact it does not work correctly, sorry…
I have used your code from page 1 to display featured image on the bp activity stream. However I have a gravity form that lets user upload posts from their, I have used this simple snipet of code to make the upload image a featured image.
add_filter(“gform_post_submission”, “set_post_thumbnail_as”, 10, 2);
function set_post_thumbnail_as($entry, $form){
//getting first image associated with the post
$post_id = $entry[“post_id”];
$attachments = get_posts(array(‘numberposts’ => ‘1’, ‘post_parent’ => $post_id, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘order’ => ‘ASC’));
if(sizeof($attachments) == 0)
return; //no images attached to the post
//setting first image as the thumbnail for this post
update_post_meta( $post_id, ‘_thumbnail_id’, $attachments[0]->ID);
}This works perfectly for wordpress and displays the featured image correctly. However the featured image does not appear in the buddypress activity stream until I manually go to that post and hit update in the backend… really defeats the purpose of publishing the post… pulled my hair out for days on this.. Do you have any suggestions? I believe it is something to do with the way bp saves posts… Maybe bp_activity_post_update would work
July 11, 2011 at 12:35 pm #116136In reply to: A quick note about WordPress 3.2
Paul Wong-Gibbs
KeymasterNo — see https://codex.buddypress.org/theme-development/bp-default-theme-changelog/
(ignore all the property changes, those are irrelevant)
July 11, 2011 at 10:27 am #116132In reply to: Buddypress – BP album plugin Version 0.1.9
danbpfr
ParticipantYou will find the whole project here: http://code.google.com/p/buddypress-media/
July 11, 2011 at 10:09 am #116130n0ise
Participant@nahummadrid: first of all, thanks for your reply and sorry if i didnt explained well or with the right words.
What I’m trying to do, is that i would love that groups could be like members, u see in facebook there is the option “Switch as $FacebookPage” and then if u go to the home u will see the home of the group, if you are going to write to someone else’s wall you will post as page and not as “you”. In buddypress, for example, if the gorup admin will post on his group, will be “admin posted an update in the group TEST:” and not “TEST posted an update”.
Is there a way to make this happen?
July 11, 2011 at 9:31 am #116128Roger Coathup
Participant@tindell – this is one of several areas where the BuddyPress core API embeds too much markup and presentation, causing a consequent problem for developers.
If you look at my solution on page 1 of this thread, you have the solution for this problem for thumbnails.
As for your note:
Buddypress is great providing you don’t want to change anything expect a few colours
To a large extent that’s true if you are building child themes from bp-default.
You can develop true bespoke sites with BuddyPress, but it’s not a trivial development process – the API could be much cleaner.
July 11, 2011 at 9:20 am #116127Roger Coathup
Participant@katemgilbert – just noticed this. We built helloecoliving.com.
For that site, BuddyPress is installed on the main blog, not a sub-blog.
It just takes a little bit of work in your theme to create a separate tab / page for the community.
For an example on a later version of BuddyPress, take a look at the site we built for http://bitsythis.com – there a dedicated community page (with accompanying theme template) aggregates a lot of the community activity.
Cheers, Roger
July 11, 2011 at 8:44 am #116124In reply to: A quick note about WordPress 3.2
Paul Wong-Gibbs
KeymasterBuddyPress.org is being worked on, and is unrelated to the 1.2.9 release.
July 11, 2011 at 7:51 am #116122In reply to: A quick note about WordPress 3.2
James
Participantdoes anyone have same issue in BP 1.2.9, that help section in member’s header (after @username) does not reveal anymore?
what is happening to buddypress.org? I cannot search, do not see updates in single view. Support topics don’t have pagination anymore, cannot edit/delete topics etc.
thanks.
July 11, 2011 at 7:44 am #116121@mercime
ParticipantDouble-checked this for a friend, BuddyPress does not work where WordPress is given its own directory. I figured the rationale was one cannot create a network with that set up https://codex.wordpress.org/Create_A_Network#WordPress_Settings_Requirements. I just moved WP to physical subdomain and it was good to go
July 11, 2011 at 6:47 am #116117Paul Wong-Gibbs
KeymasterNo-one’s going to read minimised JavaScript for you to try to find a problem.
July 11, 2011 at 6:46 am #116116Paul Wong-Gibbs
KeymasterThere isn’t a specific setting, no. I’m unsure if we’ve been unable to do anything about this issue in the upcoming 1.3 release (I don’t think we did).
July 11, 2011 at 3:58 am #116109johnnymestizo
Participantcreated a bp-custom.php and put it in wp-content/plugins
added this within php tags
// Custom Buddypress Stuff
// Custom Buddypress slugs
define( ‘BP_ACTIVATION_SLUG’, ‘activate’ );
define( ‘BP_ACTIVITY_SLUG’, ‘activity’ );
define( ‘BP_BLOGS_SLUG’, ‘shops’ );
define( ‘BP_FORUMS_SLUG’, ‘discussions’ );
define( ‘BP_FRIENDS_SLUG’, ‘friends’ );
define( ‘BP_GROUPS_SLUG’, ‘groups’ );
define( ‘BP_MEMBERS_SLUG’, ‘members’ );
define( ‘BP_MESSAGES_SLUG’, ‘messages’ );
define( ‘BP_REGISTER_SLUG’, ‘register’ );
define( ‘BP_SEARCH_SLUG’, ‘search’ );
define( ‘BP_SETTINGS_SLUG’, ‘settings’ );
define( ‘BP_XPROFILE_SLUG’, ‘profile’ );still no good
July 11, 2011 at 3:57 am #116107johnnymestizo
ParticipantAdded this to wp-config.php whilst using bp-default
// Custom Buddypress slugs
define( ‘BP_ACTIVATION_SLUG’, ‘activate’ );
define( ‘BP_ACTIVITY_SLUG’, ‘activity’ );
define( ‘BP_BLOGS_SLUG’, ‘shops’ );
define( ‘BP_FORUMS_SLUG’, ‘discussions’ );
define( ‘BP_FRIENDS_SLUG’, ‘friends’ );
define( ‘BP_GROUPS_SLUG’, ‘groups’ );
define( ‘BP_MEMBERS_SLUG’, ‘members’ );
define( ‘BP_MESSAGES_SLUG’, ‘messages’ );
define( ‘BP_REGISTER_SLUG’, ‘register’ );
define( ‘BP_SEARCH_SLUG’, ‘search’ );
define( ‘BP_SETTINGS_SLUG’, ‘settings’ );
define( ‘BP_XPROFILE_SLUG’, ‘profile’ );/* That’s all, stop editing! Happy blogging. */
July 10, 2011 at 10:51 pm #116103In reply to: Terms of use?
Virtuali
MemberDuplicate: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/terms-of-use/
DO NOT duplicate topics, creating multiple topics will diminish your chances of getting support.
July 10, 2011 at 10:48 pm #116102In reply to: FB Connect With other required fields?
Virtuali
MemberPlease post this issue in the plugin’s group forum ( https://buddypress.org/community/groups/wp-fb-autoconnect/)
July 10, 2011 at 10:45 pm #116101In reply to: User Permissions Plugin?
Virtuali
MemberYou are perfectly capable of searching for the plugin you want, the bp list of plugins are here: https://buddypress.org/extend/plugins/
Also, it might be worth searching on google also
July 10, 2011 at 9:44 pm #116097lockamiz23
MemberI meant 1.2.9, (edit topic returns not found error)
July 10, 2011 at 7:38 pm #116091In reply to: Remove “Logout” from bp_get_loggedin_user_nav
David Carson
ParticipantYou’ll most likely want to create a replacement function for the function that adds the “My Account” section in the nav bar (see `bp_adminbar_account_menu()` in bp-core directory) and override it with your own custom function with the logout section removed using a `bp-custom.php` file.
This help page provides a good overview of what to do:
https://codex.buddypress.org/theme-development/modifying-the-buddypress-admin-bar/
July 10, 2011 at 3:57 pm #116083In reply to: Adding the admin bar to a php file.
NoahY
MemberIn case anyone googles here, the article posted by r-a-y works for different subdomains, but needs a bit of tweaking, based on this post:
Basically, we need to put the wordpress page with the adminbar only in an invisible iFrame and access its content from the parent.
To do this, first we add the iFrame to the external php / html file. Something like this works:
`
`
Next, we need to edit the `page-component.php` file, adding a head and body onload element:
`
document.domain = “site.com”
`
This sets document.domain to the same domain as we will specify in our external file. It also adds jQuery (needed for buddypress-ajax-chat on my site). Finally, it sets an onload event to tell the parent window to grab it’s content.
Next, we have to add some more javascript to the parent, along with the other links mentioned in the article above:
`document.domain=”sirimangalo.org”;
function getNav() {
var content = document.getElementById(‘bpsrc’).contentWindow.document.body.innerHTML;
document.getElementById(‘bpContainer’).innerHTML = content;
}`This sets the domain again, allowing the function to pass from the iFrame on up, and provides the function to grab the content of the source frame and output it to the “bpContainer” div.
July 10, 2011 at 2:37 pm #116081thinkluke
MemberI got the exact same issue here @tindell … featured image will not display in buddypress activty until I update it in the backend of wordpress manually
Has anyone come up with a solution? This is really frustrating!!!! Ah buddypressJuly 10, 2011 at 11:04 am #116077danbpfr
Participanthttps://codex.wordpress.org/Function_Reference/do_action
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/The function is in bp-themes/bp-default/members/members-loop.php]
Line 3 :July 10, 2011 at 8:39 am #116074In reply to: W3 Total Cache and Buddypress Log out issues
mafiasoph
Memberi think it has a problem with caching and with the cookies of your browser. Not so sure but why not try to log out then clear your cookies. If nothing will change maybe other members will help..^^
-
AuthorSearch Results