Search Results for 'buddypress'
-
AuthorSearch Results
-
December 6, 2012 at 6:42 pm #146690
In reply to: View this error
Paul Wong-Gibbs
Keymaster@r-a-y pinging mr. o’ embed
December 6, 2012 at 6:41 pm #146689In reply to: Split: buddypress VS bbpress
LabSecrets
ParticipantHi NickZee,
glad it was helpful 😉
While I can’t say 100% whether you need to completely reinstall, I will suggest that if you previously had selected the BuddyPress option to allow forums (the first RED FLAG in the video ;-), it created a bb-config,php file that may be the root of some troubles. In the previous video I showed folks to delete that, but in this case, it may be sufficient now to simply toggle the option “off”, save, and then re-save permalinks.
If nothing else, it won’t hurt you to try deleting that old bb-config.php file as it is no longer going to be used by BuddyPress if you use the bbPress 2.2.2+ plugin instead.
In any event, I do not think you should or will have to manually drop any tables from the db… that’s just going to lead to some troubles given how seamless the new operation works (if you follow step by step by step).I’m going to suggest in Trac (and here)Â that the wording on that particular BuddyPress option be changed or even that the option be completely removed… as the way it is now written is not helpful. I admit that it even took me four or five tries before realizing that it was referring to the “old” BuddyPress forums, even though the wording says “bbPress”.
December 6, 2012 at 6:37 pm #146687In reply to: Group Forums UI – Buttons and post information.
Paul Wong-Gibbs
KeymasterWe’re using bbPress 2 here for the forums; the recent release of bbPress 2 integrates nicely into BuddyPress. Are you using the “group forums” built into BuddyPress (aka bbPress 1)?
December 6, 2012 at 5:57 pm #146684In reply to: Split: buddypress VS bbpress
nickzee
Participant@labsecrets at 3:50. Do I need to completely remove buddypress and reinstall without discussion forum OR can I just turn them off now and that be sufficient and equal to installing without? My original buddypress install was several weeks ago, and with that Discussion Forum was checked. If so, do I need to drop tables or options from the database to make buddypress forget it was ever installed on my site?
Thank you again Spence. Very concise video instruction. Just what I need.
December 6, 2012 at 5:45 pm #146682In reply to: Split: buddypress VS bbpress
nickzee
ParticipantOhhh! An updated video. Thank you Spence ( @labsecrets)! I saw your original video and it helped a lot, but i was still left with confusion (nothing on your part).
Watching the new one now! Thank you again.
December 6, 2012 at 5:39 pm #146681mikegarlick
Participant@modemlooper I used your code above to get the tab working named ‘Test’ and its working fine. Thanks for that. I used it in a child theme custom functions file i have there. Is there any way I can have a separate file that contains the content for that section( currently “weeee content” ).
Thanks in advance
December 6, 2012 at 3:37 pm #146670In reply to: show time&date of topic&reply
danbpfr
ParticipantHi,
View here first: https://wordpress.org/search/mysql2date
and try by replacing from
echo sprintf( __( ‘%1$s said %2$s:’, ‘buddypress’ );to
echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), true);This is what is used to show the date on feeds, witch has the same output you want. Maybe would work ? 😀
December 6, 2012 at 2:15 pm #146665In reply to: Link to Blogs results in 403 Forbidden error
elixcyr
Participantok thank you Paul,
the topic has already been created some times ago .
Here :
https://buddypress.org/support/topic/blog-feature-is-not-on-found-on-the-buddypress-pages
Should i create a new topic ?
December 6, 2012 at 1:32 pm #146662In reply to: Split: buddypress VS bbpress
Paul Wong-Gibbs
KeymasterWoops, I split the wrong topic. Apologies for confusion.
December 6, 2012 at 1:24 pm #146650In reply to: Split: buddypress VS bbpress
LabSecrets
ParticipantPlease watch and follow this step by step video guide on the new bbPress and BuddyPress versions. I guarantee it will help sort out your questions.  If any remain, I’m happy to help you further 🙂
http://labzip.com/the-definitive-guide-to-buddypress-bbpress-configuration/
Cheers!
Spence
December 6, 2012 at 12:32 pm #146648In reply to: Link to Blogs results in 403 Forbidden error
elixcyr
Participantthank you for the answer, but in the settings menu of buddypress , in tab “components” there are no way to add something . May be you means in tab Pages ?
But in tab “Pages” the directorie Blogs is missing . I have only Activity Streams, Site Tracking, User Groups , Members. And i can not add manually another directories.
December 6, 2012 at 11:39 am #146645In reply to: Using activity as wire in Buddypress, following up
Jigesh
Participantyes this is surely works, thank you for your valuable update , but i guess this can be improved by linking all activity filter in one , something like facebook ,
Great!
December 6, 2012 at 10:49 am #146643In reply to: How to create forum this like
Master
ParticipantAnd how to create https://buddypress.org/login like this?
December 6, 2012 at 7:38 am #146635In reply to: How the event is triggered in Achievement Plugin
webwarrior.wng
ParticipantO wow! I have done it so far. Thanks a lot  @Paul Gibbs, it really worked for me. You are a real helpful guy.
Thanks
December 6, 2012 at 6:59 am #146633In reply to: Link to Blogs results in 403 Forbidden error
Paul Wong-Gibbs
KeymasterCreate a Page with a name other than “blogs”, and then go to the Settings > BuddyPress menu in wp-admin, then click on the ‘components’ tab, and associate the Blogs component with the new page and save,.
December 6, 2012 at 3:08 am #146625In reply to: Blog feature is not on found on the Buddypress pages
elixcyr
Participanthello
Exactly the same question …
After updating to the latest version of Buddypress, blog feature is missing in the settings of Buddypress pages directories!!!!
Is it normal ??
Thanks
December 5, 2012 at 11:57 pm #146618In reply to: Buddypress – xprofile field visibility
agtd
ParticipantI got it to work. So here is the solution for anyone that might need to do this in future.
CSS: Add the above css to your theme css
JS: Add the following to yout theme js file. [this extract was take from the buddypress global.js file]/** Profile Visibility Settings *********************************/
var jq = jQuery;
jq(‘.field-visibility-settings’).hide();
jq(‘.visibility-toggle-link’).on( ‘click’, function() {
var toggle_div = jq(this).parent();jq(toggle_div).fadeOut( 600, function(){
jq(toggle_div).siblings(‘.field-visibility-settings’).slideDown(400);
});return false;
} );jq(‘.field-visibility-settings-close’).on( ‘click’, function() {
var settings_div = jq(this).parent();jq(settings_div).slideUp( 400, function(){
jq(settings_div).siblings(‘.field-visibility-settings-toggle’).fadeIn(800);
});return false;
} );December 5, 2012 at 11:54 pm #146617In reply to: Links within "about me" section
Roger Coathup
ParticipantYep, it’s one of the most useless things in BuddyPress.
You can get rid of those links by adding the following to your bp-custom.php file:
function remove_xprofile_links() {
remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
}
add_action( ‘bp_init’, ‘remove_xprofile_links’ );
December 5, 2012 at 8:17 pm #146610In reply to: Ajaxifying buddypress search form
raminjan
Participantwell i am saying this for the community as your software lacks a feature. not to get me wrong the software is great I love to use it but it could improve and I hope there are some ears to listen. thanks and best regards.
December 5, 2012 at 7:52 pm #146608In reply to: Can't crop avatar in other language version
Paul Wong-Gibbs
KeymasterThis suggests the error is with the buddypress-multilingual plugin; you need to follow up with its author.
December 5, 2012 at 7:48 pm #146607In reply to: Can't crop avatar in other language version
jamyot@cnd-m.org
ParticipantWith Firebug I get the following when I upload:
wp-content-plugins/buddypress-multilingual/scripts.js?ver=1.4.0
jQuery is not defined
Line 2
December 5, 2012 at 6:44 pm #146598mikegarlick
Participantis the codex site for buddypress always down? i can’t access that site at all?
December 5, 2012 at 6:30 pm #146596modemlooper
ModeratorNo, functions.php should only be used for code that effects the theme layer. Use https://codex.buddypress.org/developer/extending-buddypress/bp-custom-php/
December 5, 2012 at 2:18 pm #146576In reply to: Blurry image
Paul Wong-Gibbs
KeymasterThe compression quality is actually controlled by WordPress but we occasionally receive feedback such as this, which makes me think that there’s some server dependency or configuration setting that varies from server-to-server. IIRC, it defaults to 90% image quality.
In the upcoming BuddyPress 1.6.2 release to coincide with WordPress 3.5 (i.e. very soon), we had to fix image cropping to work with WordPress 3.5, and I took the opportunity to set 100% image quality. Along with WordPress 3.5’s improvements to its media API, hopefully this problem will fix itself.
December 5, 2012 at 11:17 am #146571In reply to: Ajaxifying buddypress search form
Paul Wong-Gibbs
KeymasterAre you asking someone to write a plugin for you? I doubt this will happen, unless you hire a developer to do it for you.
-
AuthorSearch Results