Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,426 through 17,450 (of 68,918 total)
  • Author
    Search Results
  • tobylewis
    Participant

    I 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.

    #178090
    yanicklandry
    Participant

    Our 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

    #178089
    modemlooper
    Moderator

    Looks like your theme css is overriding BuddyPress.

    #178085

    In reply to: >> French PO

    danbp
    Participant

    hi @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 email

    If 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/tags

    And in the future, also here:
    https://translate.wordpress.org/projects/buddypress/dev/fr/default

    And of course, any information about translating BP in french is on the french BuddyPress site: http://bp-fr.net

    #178075
    craftersuniversity
    Participant

    I 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?

    Hugo Ashmore
    Participant

    Ok 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:

    Installing Group and Sitewide Forums

    The upgrading guide will need a little editing to make things clearer.

    Xin46
    Participant

    Thank 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…

    #178069
    craftersuniversity
    Participant

    That 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….

    #178060
    GSJ
    Participant

    Hi, 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.

    #178050
    johnsag
    Participant

    I’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 Avatar

    But 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.

    #178045
    adamjd
    Participant

    Tried 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!

    #178030
    fkapnist
    Participant

    PHP 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 …

    #178026
    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.

    #178024
    MBonner
    Participant

    the 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.

    #178023
    Henry Wright
    Moderator

    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.

    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/username

    rather than:

    example.com/members/username

    #178022
    MBonner
    Participant

    I’m new to both bbpress and buddypress. What do you mean by root profiles? I can’t get past activating my installs.

    #178020
    MBonner
    Participant

    ok, 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.

    imdreamer
    Participant

    yeah , 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 ?

    #178014
    stunley
    Participant

    Thanks 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.

    #178012
    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

    #178006
    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.

    #178005
    tonyxs1
    Participant

    Hello I BuddyPress is gone now I only have 2 blank pages in the network and groups http://fanphone.altervista.org page “attività and groups”

    #178004
    tonyxs1
    Participant

    Hello I BuddyPress is gone now I only have 2 blank pages in the network and groups http://fanphone.altervista.org page “attività and groups”

    #177999
    Henry Wright
    Moderator

    Are 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/5307

    #177996
    jakewho
    Participant

    I wonder if I can revert to an earlier version of Buddypress in order to temporarily resolve this issue??

Viewing 25 results - 17,426 through 17,450 (of 68,918 total)
Skip to toolbar