Search Results for 'buddypress'
-
AuthorSearch Results
-
July 11, 2015 at 11:33 am #241725
Alexlim91
ParticipantHi Peter,
Ya. their service also no really good. Always delay to reply my request.
I got use “Buddypress like” before but it got some conflict with other pluginJuly 11, 2015 at 11:28 am #241724peter-hamilton
Participantthey sound as helpful as a chocolate watch at buddyboss.
I dont use/like their plugins so can not help on that, but there is a very good plugin called “BuddyPress Like” which is brilliant and easy to use.
July 11, 2015 at 10:54 am #241722Sillyking
ParticipantThank you all, I got it sorted. I copied the buddypress folder from bp-legacy and pasted into my theme folder, everything seems perfect now when I edit it. But I just noticed the members page displays users twice if I click on the following item and back to memebers, why is that? Thanks a lot every1.
July 11, 2015 at 8:33 am #241714djsteveb
Participant@rollercoasterider – so you created a new “page” and that page’s title is “Home”
maybe you created a second “page” and called tha “blog”
You went to: Settings -> reading and selected static front page to show the “page” Home ?
Perhaps blog to the “blog” page)I assume you did the confige bp pages thing ( https://codex.buddypress.org/getting-started/configure-components/ )
maybe assigning ( https://codex.buddypress.org/getting-started/register-and-activation-pages/ )
and you are using a default theme like 2014 ?
and when you click on members it goes to home?
Is this the same with all the other plugins deactivated?
Set your permalinks to pretty urls?
July 11, 2015 at 8:23 am #241713In reply to: [Resolved] registration and refresh :/
danbp
Participantre check all your settings, permalinks and htaccess
You may have a redirect problem because you installed WP/BP in /voyages/ directory
read also this and follow the links for more information:
https://buddypress.org/support/topic/unable-to-register-users-2/#post-241704July 11, 2015 at 4:38 am #241705Rollercoasterider
ParticipantI uninstalled WP and reinstalled manually.
I have activated BuddyPress and then added most of the plugins. I am waiting to add Simple:Press and Zippy Courses until I figure moer things out.I set a static front page to direct to HOME, but it is still directing to the Members page.
Anyone know why?July 11, 2015 at 3:38 am #241704In reply to: Unable to register users
rebekahmeuir
ParticipantThis article helped me solve a similar issue http://stackoverflow.com/questions/19976038/buddypress-registration-page-is-not-working
July 10, 2015 at 6:10 pm #241690In reply to: Unable to register users
danbp
ParticipantI don’t know if this is any indication of the issue but no pages were generated during the installation of the plugin, I had to set them all up manually.
The answer is in your first topic:
I have deleted the original copy of BuddyPress from my site and the associated pages.If you haven’t removed BP from DB, via plugins dashboard > delete before reuploading a new copy it’s normal that you have to recreate the pages manually.
The adventure starts here:
July 10, 2015 at 6:06 pm #241689Wpmaster78
ParticipantMost of the time BP will use page.php since that template file exists in the majority of WordPress themes. However, if you wanted to style BuddyPress pages differently than a regular WordPress page, you could add a template file named buddypress.php to your theme’s directory and BP would use that template instead since that file is ahead of page.php in the hierarchy above.
July 10, 2015 at 5:31 pm #241688In reply to: Unable to register users
juicester
ParticipantUpdate. I have gone as far as deleting all plugins across the site except for BuddyPress and it still won’t work. I don’t know if this is any indication of the issue but no pages were generated during the installation of the plugin, I had to set them all up manually.
Hope to hear soon.
Thanks
July 10, 2015 at 3:46 pm #241686In reply to: edit xprofile as an editor not an admin?
danbp
ParticipantThat’s a recent function i didn’t know ! It’s filtrable, so you haven’t to hack that core file.
See also in same file member_can_edit function, related to bp_moderate capability, used for group admins, but i doubt you can apply it to “editor”…
FYI: https://buddypress.org/support/topic/bp_moderate-capability/
Additionnally, see this snippet written for WP only, if you can combine something:
I’ve already tested all this, but i got the same result as you. But i’m not a dev. 🙂
Good luck !
July 10, 2015 at 2:12 pm #241681In reply to: edit xprofile as an editor not an admin?
danbp
ParticipantThis is actually not possible. Is a work on progress: https://buddypress.trac.wordpress.org/ticket/5121
July 10, 2015 at 6:06 am #241666Rollercoasterider
Participant@djteveb,
Thanks for responding.
Re: Pretty Permalinks
I think I was getting mixed up with pretty urls at my smf forum which were a disaster. When I moved my blog I had to change embedded links and that was a nightmare and I was thinking it was due to pretty permalinks since ?I had a nightmare changing links at the forum as well. But my blog does use pretty permalinks and I have them set up on this other WP install as well.I have just disabled all plugins–checking in between deactivations occasionally. I deactivated Simple:Press last and before that the logout link was still going to the forum index and now it just goes to the members page which is still acting as the front/home page even though I have the page titled HOME selected as being the front page–I checked this again after deactivating all the other plugins.
But partway through I did notice a message only on the members page shown as a small pop-up ONLY when I click chrome in my footer bar and see all the open window options. When I choose to view the wondow in full the message disappears.
<br/> <b>Warning</b>:strstr() [<ahref=’function.strstr’>function.strstr ]: Empty delimiter in <b>/home/…wp-content/plugins/buddypress/bp-core/bp-core-filters.php</b> on line <b>781</b> Members | – Google Chrome
I had to take a screen shot of it just to have enough time to read it because the pop-up didn’t stay very long and I had to type it manually here, so I might have messed up the spacing.
The activity, profile, notifications and settings links on the menu go to the same file not found message as before.
My next step will be to uninstall and reinstall through cpanel or ftp. But first I’ll wait and see if anyone else has ideas and come back to it tomorrow.
July 9, 2015 at 7:22 pm #241648In reply to: Remove Activity / Join Info
danbp
Participanthi @billmann,
to remove only last activity date from profile header:
function bpfr_core_get_last_activity( $last_activity_date ) { if ( empty( $last_activity_date ) ) // we do nothing $last_active = ''; else $last_active = sprintf( $string, bp_core_time_since( $last_activity_date ) ); } add_filter( 'bp_core_get_last_activity', 'bpfr_core_get_last_activity' );To remove all last active instance (profile, group & member directory,…), you simply remove the filter
function bpfr_remove_last_activity_filter() { remove_filter( 'bp_core_get_last_activity', $last_active, $last_activity_date, $string ); } add_filter( 'bp_core_get_last_activity', 'bpfr_remove_last_activity_filter' );Add to your child-theme functions.php or to bp-custom.php
bp_core_get_last_activityfunction is in buddypress/bp-core/bp-core-functions.php:1418Note that site wide activity is not affected by these functions.
July 9, 2015 at 1:02 pm #241635Christian Kramer
ParticipantThe problem seems to happen only in Multisite mode. I stepped back to single site. Now I can access the user section “waiting for approval/pending/…” again.
But there is another problem with Buddypress about Approval, which I will post in a separated article.
Thanks for your patience and support.
July 9, 2015 at 9:52 am #241629djsteveb
Participant@rollercoasteride
disable all plugins except buddypress and twenty-something theme – does it work?
My guess is your wp / BP may work fine without the zippy courses plugin – if it works fine with no other plugins – then your issue is with those plugins, not a BP issue per se.
No WP and BP do not work with default theme and all other plugins disabled?
yes you need permalinks pretty – I think.. when you set that does it actually write to your htaccess file? or is there some text that appears at bottom of screen (below scroll view sometimes) that tells you need to manually add the new htaccess code?
still not work? you may…
Looks like you may have some corrupted files somewhere – I would make a backup of your databases and zip up your files for a backup (there is a reasonable backup thing in softalicious backend) – remove the wp installation through softalicious – remove the whole wp / bp setup – start fresh.
If exporting your database through phpmyadmin, click advanced / add / drop table or something (directions in wp codex)
You can install WP through softalicious and then add BP no problem in my experiences.
(I would not count on softalicious to do your updates, gosh fantistico was horrible at that, and WP has it’s own auto-update thing going on these days anyway)/random thoughts from a user, not a BP dev or anything – other advice may be better.
July 9, 2015 at 9:42 am #241625In reply to: Advice on Hosting
djsteveb
Participant@eskymo – if you have the money to burn get a basic vps somewhere and get it started.
my past experiences with “cloud hosting” did not work out – other hosts may differ.
If you have not even started I would not worry about bandwidth or the network growth – sure if you are going to run TV commercials saying join my social network and get free gold bars – then you probably want to worry about that..
I have a solid buddypress site running on a basic shared hosting environment (reseller package they call it I think – gives a little more resources)
I have one running on a VPS, and another on a dedicated server. Even if you get 10,000 members sharing pics and uploading vids I don’t think you will hit bandwidth and growth issues.
You can always copy your database and zip your files to a new host or larger plan at same host if you run into limits.. and of course also look at things to do that would minimize things (block bad robots indexing, cache plugins, etc)
Not sure why you would stick with looking in london hoping to get support on the phone during daytime hours – if I have a host that can’t answer me with support at 2am I move on (and have) to the next one.
With a reasonable host I think you could start at $10 a month.. if can afford get a VPS ~50 a month – dedicated shared resources – better if you are going to setup your BP to also be WP-MS (multi-site / multi-blog (giving users their own “tumblr” type blogs on top of the social networking stuff)
If you grow out of it – great – you can likely afford to go dedicated and look into tuning thing..
/random opinion \ thoughts
July 9, 2015 at 6:53 am #241616In reply to: Favorite/Bookmark single post
danbp
Participanthi @nkeatign,
this here if it helps you:
https://buddypress.org/support/topic/adding-favourite-posts-as-a-tab-in-buddypress/#post-236682July 9, 2015 at 6:40 am #241615In reply to: How to show Biographical Info in members profile?
danbp
Participantto add a profile field like biography to profiles, you have to activate xprofile component in BP settings.
This and much more is all explained on the Codex.
it just showing membername|sitename This is not a issue, but intended so by default.
membername|sitename is the page title when on a member profile
members|sitename is the page title when on the member directory – where “members” is the title you give to the member page. BP create automatically this page and use “members” as title at first install, but you can modify it.Aside, you’re using admin as user name. I strongly recommend you to change this.
https://codex.wordpress.org/Hardening_WordPress
http://www.wpbeginner.com/wp-tutorials/how-to-change-your-wordpress-username/July 9, 2015 at 3:08 am #241605In reply to: [Resolved] Limiting Activities by User’s City
puffyjoe
ParticipantI just wanted to say I got it working. this is my code to filter by the city I save in meta
public function activity_querystring_filter( $query_string = '', $object = '' ) { if( $object != 'activity' ) return $query_string; // You can easily manipulate the query string // by transforming it into an array and merging // arguments with these default ones $args = wp_parse_args( $query_string, array( 'action' => false, 'type' => false, 'user_id' => false, 'page' => 1 ) ); if( bp_is_user() ) $args['user_id'] = bp_displayed_user_id(); // try to use args $user_id = bp_loggedin_user_id(); $user_id = bp_loggedin_user_id(); $city = xprofile_get_field_data('9', $user_id); // $city = xprofile_get_field_data('9', $args['user_id']); //not sure if this is set right but could work // An activity meta query <img src="https://codex.buddypress.org/wp-includes/images/smilies/simple-smile.png" alt=":)" class="wp-smiley" style="height: 1em; max-height: 1em;"> $args['meta_query'] = array( array( /* this is the meta_key you want to filter on */ 'key' => 'city', /* You need to get all values that are >= to 1 */ 'value' => $city, 'type' => 'CHAR', 'compare' => '=' ), ); $query_string = empty( $args ) ? $query_string : $args; return apply_filters( 'bp_plugin_activity_querystring_filter', $query_string, $object ); }//end method activity_querystring_filterJuly 8, 2015 at 4:09 pm #241586In reply to: Blog body content not appearing on Buddyblog
danbp
Participanthi @revadigital,
not sure what you call buddyblog… The blog is part of WordPress, not BuddyPress.
Can you give site url, theme, list of plugins and install type (network or single) please ?
Found a site which seems to be yours. If it is the case, you’re using Frisco for BP, an old theme. This theme hasn’t been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Since BP 1.9 (dec 2013), you can use almost use any existing theme.
If you’re in a test phase, use simply 2015. Once anything is working, you can search a theme. 🙂July 8, 2015 at 8:24 am #241575danbp
ParticipantSeems to be a weird bug ! A ticket was opened a few weeks back:
https://buddypress.trac.wordpress.org/ticket/6360Same issue here, with a patch:
https://buddypress.trac.wordpress.org/ticket/6371Test the patch, an give feedback (important) about your issue and some details about your host config: server type, php & mysql version.
You can login by using same credentials as here.Good luck !
July 8, 2015 at 8:20 am #241574In reply to: Buddypress posting privacy
Henry Wright
ModeratorYou can set
scopetofriendsto filter your activity loop. See the Activity Loop article for more info.July 8, 2015 at 8:08 am #241573In reply to: Edit Students Stats Widget
danbp
ParticipantHi @chirag1212,
you’re on BuddyPress support forum. But BP hasn’t a BuddyPress Course Stats widget.
Ask on your theme support or the widget author.July 8, 2015 at 5:20 am #241571Christian Kramer
ParticipantYes, this is the only part I cannot access.
I use buddypress in the main site of the network only. I installed it as described in the page you linked.
Buddypress is a part of the plugin directory in the wordpress installation.
-
AuthorSearch Results