Search Results for 'buddypress'
-
AuthorSearch Results
-
November 4, 2012 at 3:06 pm #144480
In reply to: Social Theme Question?
rickkumar
Participant@modemlooper Thank you for your response.
Any idea about when BP 1.7 is coming?
Actually I am in a hurry and want to have the site(s) online within a week or so.
The sites don’t have to be fancy but need to be launched soon. I thought of choosing social theme because I am afraid of making lots of changes again if I choose a different theme later.“BuddyPress 1.7 is coming soon and will work on any WordPress theme. If you are not in a hurry you might want to choose a responsive WordPress theme”
Are you saying that all the regular wordpress themes will work fine with buddypress/multisite/multi-network environment when BP 1.7 comes?
Are there any BP responsive themes that I can choose from at this moment?
Please advise. Thank you.
November 4, 2012 at 2:51 pm #144478In reply to: How to paginate with bp_user_query?
enderpal444
Participant@djpaul Ok because I just thought I was reading about how it was built to scale and I’m dealing with alot of users and large lists.
November 4, 2012 at 7:11 am #144476enderpal444
Participant@modemlooper Really appreciate the explanation! I got it working with infinite scroll on a user ‘s front page to show their posts which is a nice extension. Thanks alot!
November 4, 2012 at 6:19 am #144475In reply to: Social Theme Question?
modemlooper
ModeratorBuddyPress 1.7 is coming soon and will work on any WordPress theme. If you are not in a hurry you might want to choose a responsive WordPress theme
November 4, 2012 at 5:43 am #144474In reply to: Buddypress showing members as active 4 hours off.
Ham Radio
ParticipantNevermind, it was because of a plugin, thanks
November 4, 2012 at 1:51 am #144471In reply to: Buddypress showing members as active 4 hours off.
Ham Radio
ParticipantAnybody have any ideas? I also have Ajaxchat installed and it is showing everything like 4 hours ahead or something like that.
November 4, 2012 at 1:44 am #144470In reply to: Please help Fatal Error BP Media Upgrade
ript247
ParticipantUsing wp 3.4.2 and bp 1.6.1 found there is a conflict with buddypress media upgrade 2.2. Had to deactivate the plugin using ftp file manager. additionally to remove the upgrade settings I had to restore to previous date.
I hope this helps someone in the future

And if anyone knows anyways to troubleshoot this error so I can use it that would be great too.
November 4, 2012 at 12:51 am #144469In reply to: Need recommendation for Buddypress Support
TramWP
ParticipantThank you @modemlooper.
November 4, 2012 at 12:33 am #144468In reply to: Need recommendation for Buddypress Support
modemlooper
ModeratorYou can post here to request a developer
November 4, 2012 at 12:30 am #144467In reply to: Need recommendation for Buddypress Support
TramWP
ParticipantThank you @mercime. I meant other than WPMU DEV (based in Australia), what are the options/who can provide similar services in US? I’d like to consult/work with solid buddypress/web development expert for a startup project. Thanks much!
November 3, 2012 at 9:48 pm #144465In reply to: Post Update button, Activities Disappear
Blogurp
ParticipantHey guys,
@modemlooper
@mercime
I found the solution to the problem here: https://wordpress.org/support/topic/plugin-buddypress-cant-post-update-in-activity-stream. It turns out the button was always there, but in the bp.css file in wp-content/plugins/bp-template-pack, around line 60, the button has a height of 0. you have to manually change the height to 40 or whatever you want.It worked for me and my button is now there.
Later
November 3, 2012 at 5:21 pm #144463modemlooper
Moderatoroops wrong function. This will add a sub nav under profile called Page. I don;t think you can change the slug for this item for different pages. What you would want is /page/name-of-page/
In BuddyPress the part after /page/ would be considered an action variable. So you could do a looopy of some sorts to get the action and match it up to a page.
Example code to read the variable and then you could display an appropriate page. if you visit /page/2/ it will echo the string. action variables are anything after an action. page is the action so anything in between slashes = variable and they are stored in an array.
if you had this in the url:
page/2/3/4/the variables can be accessed like this:
$bp->action_variables[0] = 2
$bp->action_variables[1] = 3
$bp->action_variables[3] = 4`function bp_page_nav(){
global $bp;$user_domain = bp_displayed_user_domain() ? bp_displayed_user_domain() : bp_loggedin_user_domain();
$profile_link = trailingslashit( $user_domain . $bp->profile->slug );
bp_core_new_subnav_item( array(
‘name’ => ‘Page’,
‘slug’ => ‘page’,
‘parent_url’ => $profile_link,
‘parent_slug’ => $bp->profile->slug,
‘screen_function’ => ‘page_screen’,
‘position’ => 20) );
}
add_action(‘bp_setup_nav’, ‘bp_page_nav’, 10 );function page_screen(){
global $bp;add_action( ‘bp_template_content’, ‘bp_page_screen_content’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
}function bp_page_screen_content(){
global $bp;$variable = $bp->action_variables[0];
if( $variable == ‘2’ ){
echo ‘page 2’;
}}
`November 3, 2012 at 4:48 pm #144462rickkumar
ParticipantThank you for the link. I am currently checking it out.
November 3, 2012 at 4:33 pm #144461enderpal444
Participant@modemlooper Do you see any flaw in my code givin that I’m using xprofile_screen_display_profile? This method worked perfectly when creating loops under say mysite.com/exampleuser/articles/ but its isn’t paging for the top level. It just takes me to a blank members screen. hmmm
November 3, 2012 at 3:58 pm #144459modemlooper
Moderatorxprofile_screen_display_profile
November 3, 2012 at 3:53 pm #144458In reply to: Buddypress issues
Hugo Ashmore
ParticipantIf you have just installed BP did you not then follow the setup steps?
If you didn’t do, if you did and the pages do not exist create the pages manually then go back to the bp settings page and associate them.
November 3, 2012 at 3:39 pm #144457debroekriem.nl
ParticipantThanks @mercime for your repley!
I would like to use the page lay-out “content / sidebar”
November 3, 2012 at 3:14 pm #144456@mercime
Participant@infodebroekriemnl we’ll continue with the support in this thread. Initial scan shows that you would need to change 16 files for Step 3 of the BP Compatibility process.
The Esplanade Theme Demo at http://demo.onedesigns.com/esplanade/ shows default page layout is “Sidebar Content Split”. Is that what you want for all your BP component pages or something else from the list of Page Templates in the demo?
November 3, 2012 at 1:26 pm #144455In reply to: buddypress 1.6.1 and Akismet
tifire
ParticipantWhen the activity update is posted, there is the “Cleared by Akismet” text on the right. I think that means it’s working.
November 3, 2012 at 1:20 pm #144454debroekriem.nl
ParticipantI have posted this question in the wrong group, this can be deleted, I have started a new topic in the installing buddypress forum.
November 3, 2012 at 1:10 pm #144453In reply to: buddypress 1.6.1 and Akismet
tifire
ParticipantThank you. So to know if akismet works, I will have to wait until the first spam is marked by akismet?
November 3, 2012 at 8:45 am #144452In reply to: landing page
@mercime
ParticipantCheck out this tutorial http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
November 3, 2012 at 8:37 am #144451In reply to: Need recommendation for Buddypress Support
@mercime
ParticipantWhat do you mean by ” alternatives of WPMU DEV” re support? Not clear.
November 3, 2012 at 4:25 am #144448In reply to: [resolved] Cannot post new activity
marcycapron
Participant@djpaul
Nope, been running 1.6.1
November 3, 2012 at 3:18 am #144447In reply to: Blank “pages” after install
mbrutsch
ParticipantIf I create a new page ‘New Activity’ from Plugins -> Buddypress -> Settings -> Pages, it seems to create the page, but if I click ‘view’ from there, it goes to the non-existant /wordpress/new-activity
-
AuthorSearch Results