Search Results for 'buddypress'
-
AuthorSearch Results
-
April 20, 2011 at 3:38 pm #110644
In reply to: BuddyPress with PageLines Free Template
@mercime
Participant=== all the possible available (BP I think) links appear in the far left of the bottom of the footer. ===
I believe you’re referring to the BP Admin Bar. I assume you used the BP Template pack plugin to make your WP theme compatible with BP. You will also need to load the styling for BP admin bar via @import.
`/*
Theme Name: Name of your Theme
… etc
… etc
… etc
*//* Load the default admin bar styles */
@ import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );`April 20, 2011 at 1:43 pm #110640In reply to: changing the core /groups/ and /forums/ slugs?
Luciano Passuello
ParticipantI’m also interested in this. Since people often create forum topics in the wrong groups, it’s not usual to have to move them around (using @dwenaus Topic Mover plugin). Moving the topic breaks links to it (in notification emails, activity stream, etc.)
Any suggestions on how to change the slug or how to somehow avoid this problem of broken links for moved forum topics?
April 20, 2011 at 12:50 pm #110635Virtuali
ParticipantWhat do you want to be in the links page?
Use the buddypress links plugin https://wordpress.org/extend/plugins/buddypress-links/ it adds that tab to groups
April 20, 2011 at 10:51 am #110631John James Jacoby
Keymaster@brentjacobsen – Do you have access to your PHP/apache error logs to see where exactly the memory error is happening? How much available memory is being allocated to PHP? Remember that the more custom PHP code you pull in (with plugins, elaborate themes, etc…) is the bigger that buffer gets, and eventually it’ll pop once it hits the limit. That limit may get reached at different times for different users depending on the number of groups they’re in, the number of pending invitations they have, the page that is trying to be displayed, etc…
April 20, 2011 at 10:47 am #110629In reply to: WordPress Nightly Breaks Buddypress
John James Jacoby
KeymasterThis will be a non-issue when the bbPress plugin eventually replaces the stand-alone version currently included in BuddyPress. Until then, the next version of BuddyPress will continue to work the same as before in this regard. Props @djpaul for being on the case.
April 20, 2011 at 8:30 am #110626finni3
ParticipantApril 20, 2011 at 7:27 am #110624Phil Meyer
ParticipantLOL… thanks Boone! I suspected it might not be a quick fix. What I needed was someone to at least just react and tell me that – like you did.
I reckon this might ask for a custom plugin to be written. Do you think that’s doable by a competent developer?Basically what I wanted was an additional option that would exclude updates from anyone that are not friends or followers of the logged in user, and from groups or forums that have nothing to do with him. I might look for someone who will write me such a plugin for a reasonable fee.
Thanks again for your answer!
April 20, 2011 at 6:13 am #110622In reply to: WordPress Nightly Breaks Buddypress
Paul Wong-Gibbs
KeymasterIt’s not to do with a global. It’s to do with calling the parent class’ WPDB(), and the fact that WP 3.2 is only supporting PHP 5+, the deprecated PHP4-style class constructors have been removed.
BuddyPress has recently patched these in trunk
April 20, 2011 at 5:24 am #110620In reply to: WordPress Nightly Breaks Buddypress
LPH2005
ParticipantI haven’t played with 3.2 but in looking at the line 144 – and reading the code notes – the parent::WPDB is the issue..
` function BPDB( $dbuser, $dbpassword, $dbname, $dbhost ) {
parent::WPDB( $dbuser, $dbpassword, $dbname, $dbhost );$args = func_get_args();
$args = call_user_func_array( array( &$this, ‘_init’ ), $args );if ( $args )
$this->db_servers = $args;
}`Have you tried to globalize that function?
https://codex.wordpress.org/Function_Reference/wpdb_Class
In other words, add `global $wpdb;`
April 20, 2011 at 12:15 am #110601brentjacobsen
MemberI’ll try that. On a side note, the site is actually an academic one that we are using for the students/faculty/alumni of an MBA program to communicate. The ability to have both external and internal components combined with the social aspect are what makes Buddypress so attractive. I have used many of your plugins, and would love to pick your brain on a few things if that would be appropriate.
April 20, 2011 at 12:09 am #110596Boone Gorges
KeymasterIt is not trivial to do this. That’s probably why no one has jumped in. It would take a developer a few hours to get this working correctly. I am happy to give you some pointers, though I’m unsure how useful it will be.
The activity filter dropdown works by feeding parameters into the bp_has_members() loop. But that loop does not accept any parameters like “connected-to-him”. It does accept user_id and scope params, so you can get all of a user’s friends’ activity fairly easily. I’m not sure if this is what you mean by “related” and “unrelated”. If you want something above and beyond “friends”, then it’ll have to happen by means of a custom query.
Making an activity filter the default involves a few things. First, you have to ensure that the correct dropdown option is selected onload. That can probably be done easily enough at the template level. Then you have to filter the output of bp_ajax_querystring, so that when there are no other scope items being passed, you add the user_id and friends arguments to the query string. If you search these forums for bp_ajax_querystring, you should be able to get some hints.
As I said above, this will probably take a competent BP developer a few hours to implement – more if you need some complex query for the notion of “related” activity. Maybe that will help you BELIEVE why no one has jumped in to solve with a magical line of code
April 20, 2011 at 12:06 am #110594brentjacobsen
MemberWP 3.0.5. BP 1.2.7. User will get to login screen, enter their login info, and then see a blank screen. When you look at the source, it just shows an empty body tag. User can’t access anything at this point. I’m using BuddyPress Widget Theme 1.2.7.
April 19, 2011 at 11:17 pm #110592Phil Meyer
ParticipantI can’t BELIEVE no-one wants to / can help me out with this! Please guys, I’m pretty desperate here…
April 19, 2011 at 10:33 pm #110585In reply to: edits not showing up?
mabjustmab
Participantgood question!
*checks plugins*
nope. damn. I would have liked to feel stupid if it meant that this was fixed. damn.my current plugins:
Absolute Privacy
Add All Nav Links to BP Adminbar
BP Unread Posts
BuddyPress
BuddyPress Activity Stream Hashtags
BuddyPress Mandatory Groups
CSV User Import
Custom Login Screen
Easy Albums – Buddypress users create and share images, video and audio albums – the easy way.
Exec-PHP
Horizontal scrolling announcement
Simple CRM BuddyPress Addon
WP-Polls
XClonerApril 19, 2011 at 10:31 pm #110583In reply to: Woke Up Mysteriously with a Fatal Error
Boone Gorges
KeymasterThere must be something wrong with the way that you are editing the files. What program are you using to edit them? The file should look exactly like this: https://svn.buddypress.org/tags/1.2.8/bp-core/bp-core-avatars.php Yours must not.
April 19, 2011 at 10:21 pm #110580In reply to: Woke Up Mysteriously with a Fatal Error
Boone Gorges
KeymasterI’m telling you, something is corrupt in your bp-core/bp-core-avatars.php file. You can see here https://trac.buddypress.org/browser/tags/1.2.8/bp-core/bp-core-avatars.php that there should be no call to bp_core_set_avatar_constants() on line 12 of the file. I’m guessing that the first 46 lines have somehow been removed from your file. Open it up and look to see that it matches the distribution version exactly.
April 19, 2011 at 8:33 pm #110578In reply to: New theme – Buddypress UX
Hugo Ashmore
Participantyep they are one and the same and is familiar – obviously – with BP themes.
April 19, 2011 at 8:22 pm #110577In reply to: New theme – Buddypress UX
nit3watch
Participanton a good note, it seems Tammie ( from wpmu dev ) is reviewing the theme now and she has pointed out valid things. I’m guessing @karmatosed = Tammie because of her avatar in the images posted.
April 19, 2011 at 6:45 pm #110573In reply to: Buddypress Links Redirect To Home Page
GustavoRivadeneyra
MemberDont touch any core files or htaccess before trying this:
Before an upgrade or moving to other hosting save your template folders created by “BuddyPress Template Pack” for your custom WP theme (members and groups)
Check inside your theme folders for each:
members/single/
groups/single/
there should be many subfolders and files
Some hosting providers does not copy files under some subfolder level
if those folders are empty copy those files from wp-content/plugins/buddypress/bp-themes/bp-default and paste inside your custom theme.
Please reply if this helpsApril 19, 2011 at 6:44 pm #110572GustavoRivadeneyra
MemberDont touch any core files or htaccess before trying this:
Before an upgrade or moving to other hosting save your template folders created by “BuddyPress Template Pack” for your custom WP theme (members and groups)
Check inside your theme folders for each:
members/single/
groups/single/
there should be many subfolders and files
Some hosting providers does not copy files under some subfolder level
if those folders are empty copy those files from wp-content/plugins/buddypress/bp-themes/bp-default and paste inside your custom theme.
Please reply if this helpsApril 19, 2011 at 4:58 pm #110565Boone Gorges
KeymasterIf you can revert to an older version of the .htaccess, it might be worth a test. 500 errors suggest that WP is not even loading in the absence of BP, which suggests that there might be something funky happening at the htaccess level.
April 19, 2011 at 4:57 pm #110564Hugo Ashmore
ParticipantSimple enough to try but you don’t overwrite these types of files ever always change it’s file name i.e turn it into a backup then upload another version, it’s a basic *nix principle.
April 19, 2011 at 4:13 pm #110562ewebber
Participant@boonebgorges – I really appreciate your help on this. I think I have, mainly to do with expiration on files, do you think that will do it? I should be able to grab an .htaccess from the original wp zip file and overwrite the existing one.
April 19, 2011 at 4:05 pm #110561In reply to: More Networks
Boone Gorges
KeymasterYes, I think I understand what you are suggesting. But I am saying that it is not possible at the moment. Groups, forums, etc, are universal in a BuddyPress installation. With some customization, you might be able to show certain groups only on a certain subdomain (using the BP setting BP_ENABLE_MULTIBLOG) but I don’t know of any plugin that will do this out of the box.
April 19, 2011 at 3:43 pm #110560In reply to: New theme – Buddypress UX
Hugo Ashmore
ParticipantI agree and I attempted to limit the sub pages displayed when we restyled the bp-default dropdowns so one couldn’t nest a series of pages 20 deep as that is in a similar vein to too many top links, trouble is with a theme one can’t really dictate these matters that’s up to the user to manage, but my puzzlement was that this reviewer didn’t understand that and passed the comment that they did, really it wasn’t something that ought to be commented on.
-
AuthorSearch Results