Search Results for 'buddypress'
-
AuthorSearch Results
-
February 7, 2014 at 6:08 pm #178094
tobylewis
ParticipantI wrote my own theme and am always trying to do things the right way but initially things were not working correctly with bbPress or BuddyPress. I now realise was my theme using the_excerpt rather than the_content on the special pages.
I’d read the topics in the buddypress codex on theme support but these mainly addressed the issue of altering pages using the template selection rather then explaining what a theme author needs to do to make their theme work properly with bbPress or BuddyPress. Just explaining how it injects its content into pages (by hooking the_content) is not immediately obvious to the newcomer.
In my theme I had been using is_singular() to know when to show content rather then expert and use parameterised preferences for each post type for when is_singluar() was false.
Simply changing this test to (is_singular() || is_page()) suddenly turned my theme from incompatible to reasonably compatible. The “/forums” slug still did not work properly but after searching around I discovered the is_bbPress() function and expanded the test to:
(is_singular() || is_page() || (function_exists(‘is_bbPress’) && is_bbPress()))
There may be other tricks and gotchas I haven’t found yet, but as I say it would be really nice to have a topic directed specifically at theme authors to make sure they know what needs to be in place to make things work.
February 7, 2014 at 4:30 pm #178090In reply to: Temporary deactivating BuddyPress possible?
yanicklandry
ParticipantOur buddypress plugin main plugin was deactivated by accident and now we can no longer access any content on the website or login ad admin to reactivate it.
I am not sure what to do. We had a backup of the entire wordpress installation prior to that mistake and it was restored in full. This is from the error log:
PHP Fatal error: Call to undefined function bp_is_register_page() in /home1/tgscca1/public_html/wp-content/plugins/s2member/includes/classes/custom-reg-fields-4bp.inc.php on line 50
February 7, 2014 at 3:55 pm #178089In reply to: Group creation, bugging – privacy and roles
modemlooper
ModeratorLooks like your theme css is overriding BuddyPress.
February 7, 2014 at 2:04 pm #178085In reply to: >> French PO
danbp
Participanthi @aniclip
it’s not a bug, you just try to translate something that doesn’t exist in the original file !
The exact string is Notify group members of these changes via emailIf you’re using BP 1.9 the string to translate looks like this in the po file:
5912 #: bp-templates/bp-legacy/buddypress/groups/single/admin.php:26
5913 #: bp-themes/bp-default/groups/single/admin.php:26
5914 msgid “Notify group members of these changes via email”
5915 msgstr “Signaler par mail les changements aux membres du groupe”If you need the fr_FR translations, you can find them here:
https://i18n.trac.buddypress.org/browser/fr_FR/tagsAnd in the future, also here:
https://translate.wordpress.org/projects/buddypress/dev/fr/defaultAnd of course, any information about translating BP in french is on the french BuddyPress site: http://bp-fr.net
February 7, 2014 at 11:45 am #178075craftersuniversity
ParticipantI found a piece of code that cind of work when i put it in the child themes header.php:
<?php if ( function_exists( 'bp_message_get_notices' ) ) : ?> <?php if ( bp_is_active( 'messages' ) ) : ?> <?php bp_message_get_notices(); /* Site wide notices to all users */ ?> <?php endif; ?> <?php endif; ?>However, this makes it visible for all, even visitors that has not logged in, which is not what i want. I would like this to be visible only for logged in members, which means i have to add it too one of the php files in BuddyPress installation, but which one? Can anyone help me with this?
February 7, 2014 at 11:27 am #178073Hugo Ashmore
ParticipantOk what is not clear in that particular guide is the necessity of creating a new forum but selecting ‘category’ rather than ‘forum’ when you save/create it, this category is the groups forums parent and the slug that you would see appear in that select option, the one referenced ‘Groups Forum’ is simply an example name.
Have a read of this other guide to installing bbPress from new written by our own @mercime as it explains the steps very clearly:
The upgrading guide will need a little editing to make things clearer.
February 7, 2014 at 8:09 am #178070Xin46
ParticipantThank you Henry! the problem was resolved after i deleted the buddypress files from dreamweaver. Seems like i cannot run buddypress at all… would be great if someone could advise me on why it is so…
February 7, 2014 at 7:50 am #178069In reply to: Redirect loops on groups and profiles
craftersuniversity
ParticipantThat is just dreadful, i hope you can find an old version of BuddyPress instead? Better an outdated version then no version i feel….Besides, it doesn’t seem that the authors care or know how to fix this, so you and i might have to live with the old version i am afraid….
February 7, 2014 at 1:47 am #178060In reply to: Hide Notification Settings
GSJ
ParticipantHi, I tried this code but it doesn’t seem to do anything? Is there a change that needs to be made to it for latest BuddyPress versions?
Thanks.February 6, 2014 at 9:47 pm #178050In reply to: Can member profiles be made public (and linkable)?
johnsag
ParticipantI’m back to exploring Buddypress, and I am experimenting with an install. I’d like to have a linkable public profile for the members without all this sort of information:
@johnmc
active 3 minutes ago
Add Friend
Public Message
Private Message
Activity
Profile
Notifications 0
Friends 0
Groups 0
Forums
Settings
View
Edit
Change AvatarBut only select fields (description, publications etc). I see a lot of technical info about customizing files etc when I search for this, some of it rather old. Is there perhaps a plugin that allow me to remove all this (to me) irrelevant information for non-logged-in users? It may well be there for the users when they are logged in. Perhaps it might be easier to simply create ordinary text-files for each user presentation that they can edit themselves.
February 6, 2014 at 7:06 pm #178045In reply to: Redirect loops on groups and profiles
adamjd
ParticipantTried reinstalling BP – still REDIRECT LOOP disaster. On top of that, deleting the plug-in is impossible. When I hit “Deactivate” in Safari OR Chrome, I wait – then get “Fatal error: Maximum execution time of 30 seconds exceeded in… buddypress/bp-core/bp-core-template-loader.php on line 195”
Just a mess. Deleting all tables and manually removing the plug via ftp again. Ughhhh!
February 6, 2014 at 5:11 pm #178030In reply to: BuddyPress Version: 1.9.2 update
fkapnist
ParticipantPHP Fatal error: Call to undefined function bp_is_active()
That’s the error I get in my child theme functions.php …. but I haven’t a clue what to do to fix it… Hey guys, I’m a journalist, not a bit twiddler…. The BuddyPress team is world famous for passing the blame to other plugins – instead of its own bad installation procedures… I’ve noticed this scapegoating going on for years …
February 6, 2014 at 3:28 pm #178026In reply to: Buddypress, BBPress and WooCommerce
Henry Wright
Moderator@mbonner considering it’s a brand new site then root profiles will be disabled (that is the default) so it can’t be related to that problem.
Try updating BP to 1.9.2 (released yesterday) and deactivate WooCommerce. There shouldn’t be any conflict with bbPress and BuddyPress. However, WooCommerce is third party so there might be a conflict there.
February 6, 2014 at 1:50 pm #178024In reply to: Buddypress, BBPress and WooCommerce
MBonner
Participantthe comment about Buddypress was because I copied and pasted what I wrote in bbpress. I’m trying to figure out if the problem is with BuddyPress, bbpress or a compatibility issues between the two. Sorry about that.
As for root profiles, how can I tell when the farthest I can go right now is past the installation but not the activation stage? This is a brand new site and has had no previous installs of Buddypress.
Thank you.
February 6, 2014 at 1:44 pm #178023In reply to: Buddypress, BBPress and WooCommerce
Henry Wright
ModeratorI’m going to post this thread in BuddyPress forums to see if they are aware of what’s going on but any help here would be greatly appreciated.
This is the BuddyPress forum?
Regarding root profiles, there may be a problem with certain logic working in 1.9.2 if root profiles are enabled. Root profiles are enabled if your links look like this:
example.com/usernamerather than:
example.com/members/usernameFebruary 6, 2014 at 1:39 pm #178022In reply to: Buddypress, BBPress and WooCommerce
MBonner
ParticipantI’m new to both bbpress and buddypress. What do you mean by root profiles? I can’t get past activating my installs.
February 6, 2014 at 1:24 pm #178020In reply to: Buddypress, BBPress and WooCommerce
MBonner
Participantok, so I did a fresh install of wordpress and began to install each plugin one-by-one. Here’s an update on what’s happening:
– Buddypress released a new version Feb 5th (yesterday) with a new component or something.
– I get a blank page as soon as I activate Buddypress with bbpress (no other plugins or themes installed).
– WooCommerce works with bbpress until I install a specific theme but I will take that up with the theme.I’m going to post this thread in BuddyPress forums to see if they are aware of what’s going on but any help here would be greatly appreciated.
Thank you.
February 6, 2014 at 1:23 pm #178019imdreamer
Participantyeah , i need a real witness to show me a large computing capability for at least 100 thousands members on a WP buddypress site, but is it possible ?
February 6, 2014 at 12:06 pm #178014In reply to: Add users from another DB
stunley
ParticipantThanks modemlooper.
That solved one problem but I found another major obstacle – no ‘other’ field option on profile multi select boxes – that means I won’t be using Buddypress for the members site after all.
Thanks for taking the time to answer.
February 6, 2014 at 11:28 am #178012In reply to: Audio Playlist for BuddyPress members
hannah.caswell
Participant@noizeburger Just working through you tutorial and all has made perfect sense to me, except the last bit.
I have added the facility for the track uploads and these are appearing on the site. However, I don’t understand how I can get all this to display as a playlist. I have downloaded ‘HTML5 jQuery Audio Player’ but don’t understand how this can connect to the tracks uploaded by BuddyPress members.
Sorry to be a pain. I was just hoping you’d be able to point me in the right direction.
Thanks
Hannah
February 6, 2014 at 9:58 am #178006In reply to: BuddyPress Version: 1.9.2 update
Hugo Ashmore
Participant@fkapnist
>What is version 1.9.2 supposed to fix anyway? I could not find any documentation
There’s very clear documentation, right there on the main blog!
https://buddypress.org/blog/
If you want help, you’ll need to provide as much detailed info as possible on your setup, in particular your theme in use and it’s approach to working with BP.February 6, 2014 at 8:41 am #178005In reply to: Logic has changed with Buddypress 1.9.2
tonyxs1
ParticipantHello I BuddyPress is gone now I only have 2 blank pages in the network and groups http://fanphone.altervista.org page “attività and groups”
February 6, 2014 at 8:40 am #178004In reply to: BuddyPress Version: 1.9.2 update
tonyxs1
ParticipantHello I BuddyPress is gone now I only have 2 blank pages in the network and groups http://fanphone.altervista.org page “attività and groups”
February 6, 2014 at 2:11 am #177999In reply to: Logic has changed with Buddypress 1.9.2
Henry Wright
ModeratorAre you using root profiles?
Your problem may be related to a change which went live in 1.9.2. Have a read this ticket from comment 10 onwards:
https://buddypress.trac.wordpress.org/ticket/5307February 6, 2014 at 1:55 am #177996In reply to: Notifications not being displayed correctly
jakewho
ParticipantI wonder if I can revert to an earlier version of Buddypress in order to temporarily resolve this issue??
-
AuthorSearch Results