Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 50,476 through 50,500 (of 94,540 total)
  • Author
    Search Results
  • #125828
    Di_Skyer
    Member

    @cryptojunkie001 @candy2012 @risen32

    2 post befor @candy2012 share link to “buddypress-friends-only-activity-stream-plugin”.
    This script has same trouble with display own activity on own page.
    I FIX this problem. Now it work for me and my project.
    Tested on WP3.2.1 & BP1.2.9

    “don’t show non-friends actions in activity stream” now is plugin for BP !
    u can download fixed version here: http://atlocal.net/files/buddypress/plugins/buddypress-friends-only-activity-steam_ver1_0_1.zip

    #125827
    hogava
    Member

    for me too:
    http://diz.ir/7yl1vz
    please help me. this problem is in buddypress pages.

    Paul Wong-Gibbs
    Keymaster

    I haven’t looked at this, but it sounds as if you have. Can you post a bug report on http:/BuddyPress.trac.WordPress.org ? Thanks

    #125823

    In reply to: Activities URI

    Paul Wong-Gibbs
    Keymaster

    In 1.6, we hope we’re going to get some new UI in so that you can rename *every* part of every BuddyPress URL. In your example, ‘5’ maps to the ID in the bp_activity table, and that’s a key part of the activity permalink, so it’s not going to change unless you want to try to re-plumb the activity component in such a way. (I think such a thing stands a risk of breaking compatibility with plugins).

    #125822
    @mercime
    Participant

    If you’re using an older BP theme or bp-default child theme, check out section on Theme Information on this page https://codex.buddypress.org/releases/1-5-developer-and-designer-information/

    #125813
    Muhang
    Member

    @clintonb11 nop nothing, I even tried a clean install and still gives me this error. Don’t have a clue why.
    It all started with using cache.

    #125803
    aces
    Participant
    fpats
    Participant

    hi
    can anyone recommend anything similar to the s2member plugin that isn’t full of bugs ?
    since i installed this terrible plugin i’ve had nothing but problems with verification emails not going out, people unable to login even after being verified, sections of the site being “member protected” despite me not setting them as so and even something as simple as the welcome page after login just going to random posts!

    sorry if someone here designed it but from my experience of it, it’s truly awful and their help forum only backs up my feelings, it’s full of people having problems.

    all i need is something to enable privacy on buddypress so only members can see activity and a way to protect certain posts for members only. has anyone used anything that works with buddypress?

    sorry for the negative post but i’ve wasted almost 6 hours on this tonight.

    #125798
    James
    Participant
    #26181
    bluesalman
    Participant

    I have an issue with new user activation link. I have WP 3.2.1 Sub-domains Multisite and BP 1.5.
    BP is running on a sub-domain, and there are 5 other sub-domains.

    When a new user registers on primary site, he receives activation email and the link is pointing to BP blog,
    I believe it should be “http://domain.com/wp-activate.php?key=xxx” but it is “http://sub-domain.domain.com/wp-activate.php?key=xxxx”

    where sub-domain is buddypress site.

    Please suggest how to correct this, activation link should point to main domain only.

    @mercime
    Participant

    @funkisockmunki if you change to bp-default theme and clear cache, does the problem persist or is it corrected?

    @mercime
    Participant

    I’ve added some screenshots at the bottom of the tutorial https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-eleven-bp-1-5/3/ so you could see how to see how the basic set up turned out.

    – Do not disable the bp.css in the compatibility process.
    – Did you add the styles suggested on page 3 of the tutorial to your child theme’s style.css file?
    – Site URL would help us to see what’s going on.

    info_sponge
    Member

    Stumbled across a pretty nasty bug recently while setting up a BP site for a client.

    Was using the bp_has_forum_topics() loop with an array of arguments in order to display a list of topics that shared a specific tag. Unfortunately, despite the fact that ‘per_page’ & ‘max’ were set to 8, and there were multiple topics that matched the criteria, only 1 topic was ever being returned.

    Several hours of digging later…

    It turns out that after it ran the first query properly (with type = ‘tags’ and search_terms equal to the tag in question), when BP would calculate how many more posts it needed to display (in the constructor of the BP_Forums_Template_Forum class), the code was fouling up. Eventually, after being passed around through a few functions and filters, it hits groups_total_forum_topic_count(), which does not accept parameters for $type.

    This means that when the query reaches get_global_topic_count() (where the actual SQL is constructed), $search_terms is intact, but $type is not. This changes the query from searching for topics with $search_terms in the tags to one searching for topics with $search_terms in the title. This is confirmed by the fact that when the function checks for the presence of $search_terms, it adds an additional ” AND ( t.topic_title LIKE ‘%{$st}%’ )”

    I was able to restore tag-searching functionality by adding an additional optional argument to the groups_total_forum_topic_count() and get_global_topic_count() functions for $type.

    That, and a complicated SQL query one of my talented co-workers helped me write, set everything aright.

    That section of the function went from this:

    `if ( $search_terms ) {
    $st = like_escape( $search_terms );
    $sql .= ” AND ( t.topic_title LIKE ‘%{$st}%’ )”;
    }`

    to this:

    `if ( $search_terms ) {
    $st = like_escape( $search_terms );
    if($type == ‘tags’)
    {
    $sql .= “AND (t.topic_id
    IN (
    SELECT tr.object_id
    FROM `wp_bb_term_relationships` tr
    INNER JOIN `wp_bb_term_taxonomy` tt ON tt.term_taxonomy_id = tr.term_taxonomy_id
    INNER JOIN `wp_bb_terms` t ON t.term_id = tt.term_id
    WHERE t.name LIKE ‘%{$st}%’))”;
    }else
    {
    $sql .= ” AND ( t.topic_title LIKE ‘%{$st}%’ )”;
    }
    }`

    This is from bp-groups-classes.php (around line 640) – BuddyPress v1.5.1

    Sorry if this is the wrong place for this. I’m a developer with plenty of WP experience, but I’m rather new to the BP side of things.

    Anyway, this seemed like a pretty big gap in the BP core functionality – a core loop function was, eventually, losing part of its specific context and returning bad data. If this was by design, I’d be interested in knowing why… BP is a pretty huge codebase, and its hard to grasp the entirety of its scope from my limited interactions with it.

    Anyway, a big thanks to the whole BP team for creating such a robust plugin. Here’s to never stopping the chase for perfection.

    info_sponge
    Member

    @boone discovered a problem with the plugin. Was unable to attach files to replies to an existing topic, despite seeing the form. Attachments only worked on the first post of new topics.

    Dug around a bit, it seems that your JS-based enctype fix was not being loaded on single group forum topic views. When I updated the code to make sure the script was running on those pages, the plugin worked once again.

    So, if anyone else is having this problem, check to see if the scripts.js file is loaded into the page and running properly. Hopefully this will save you several hours of searching through code and checking network transmissions. :)

    Thanks for writing a great plugin, Boone Gorges. Hopefully this can be patched in future versions.

    PS this is in regards to Forum Attachments Version 0.2.4 running on BuddyPress Version 1.5.1

    #26177

    awesome plugin!

    How do I:

    1) Restrict membership to buddypress (Admin to approve sign ups) and have all member content private from guest viewing?

    2) Have a guest area – eg. home page of wordpress to be accessible for guests?

    I appreciate your help!

    When viewing any of my BP group forums, the list of Forum Topics is followed by a “Post Topic” button. Clicking this button does not post a topic, but produces an error message “Please provide a title for your forum topic.”.

    When you click the “New Topic” button, a form appears to allow you to enter all the topic info, and then the same Post Topic button appears at the bottom to post the form. I’m not sure why the button is appearing before the form is activated.

    Is this a bug? Has anyone else run into this problem and found a fix?

    WordPress 3.2.1. – BuddyPress Version 1.5.1 – Theme: Frisco for BuddyPress 1.5.04

    ps – I tried digging through the forum help pages here for similar, but without a search box, it’s impossible to find out if someone else has had the same problem.

    #26173
    Swagga
    Participant

    I am working with some legacy code for a buddypress site. I have read that by deafult you should be able to send messages to any user, tho the project I am working on only allows you to send messages to a ‘friend’ is there a simple fix for this? Of if not could someone give me a list of files to look at (maybe I can fill them up with deafult buddypress code)

    Kind thanks to anyone who can help!

    #125783
    bollocks187
    Member

    Seriously – if the Buddy Press community would organize the forums and HOW to then a lot of these Q&A would be answered by folks reading.

    #125781
    Chris
    Participant

    Sorry I took so long to reply. What I did was I made a child theme and then added a header-buddypress.php and sidebar-buddypress.php file to the child theme. I followed this tutorial,
    https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-eleven-bp-1-5/

    But I’m still having problems. Here is a link to the site with the child theme running – http://projectfivezero.com

    Also, making the child theme, I lost a lot of the styling of fonts and what not.

    Thanks again for the help. Also, If you want to see the original theme, not the child theme let me know and i’ll enable it.

    Thanks.

    #125780
    bollocks187
    Member

    1) install Buddypress
    2) Select to use the BP default theme.

    Now you want to tweak and or create your css top of this ? do YOU
    1) EDIT THE bp default STYLES
    2) SET UP A BASIC CHILD THEME ?

    I think 2)

    So how do you do that and what are the basic files needed ?.

    The community needs to stop being so cryptic with answers – ITS only CSS

    #125778
    Boone Gorges
    Keymaster

    I don’t see anything in the code which would have caused such a change, but it’s possible. Please open a bug ticket at http://trac.buddypress.org

    #125772
    modemlooper
    Moderator

    Read how to put BuddyPress on a secondary site on a multisite install: https://codex.buddypress.org/getting-started/install-buddypress-on-a-secondary-blog

    #26171
    marcodagata
    Member

    Hello all,

    We would are running a blog named medicalcooking.nl with quality content (control, curated). We would like to add a zone with communityfeatures with BuddyPress in a ‘subsite’. So people can engage without disturbing the main blog.

    With bbpress this is possible, because when people sign up from the main blog they do so as a forum member. Is this possible too with BuddyPress?

    Met vriendelijke groet, 
    Marco

    #125769
    edinchez
    Participant

    @4ella it works man thanks a million! At first the the member widget list went a bit to the left, but I simply removed margin-left and it works perfectly now. Again thanks a lot!

    #26170
    jameswattjr
    Member

    I have installed BuddyPress and bbPress 2.0.2 on my WP site. However, in the groups area, any time I post, or leave a comment to a post, a duplicate post is added to the group. Additionally, I receive 2 email notifications, 1 for each duplicate post. Can anyone help me fix this problem? Thanks! – James

Viewing 25 results - 50,476 through 50,500 (of 94,540 total)
Skip to toolbar