Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 13,826 through 13,850 (of 32,678 total)
  • Author
    Search Results
  • beeeerock
    Participant

    Latest versions of everything as suggested by WordPress’s update function. BuddyPress Default theme. bbPress was installed before BuddyPress. The BuddyPress settings page had to be pointed at the correct location for bb-config.php although the forum seemed to work anyway.

    When viewing my ‘member’ page, I get the sub menus of Activity, Profile, Messages, Friends, Forums and Settings. Postings I make to the forum show up in that activity stream without any apparent issues (new posts and replies). However, going to the ‘Forums’ sub menu tab I see four sub options appear below – ‘Topics Started’, ‘Replies Created’, ‘Favorites’ and ‘Subscriptions’. The first two (topics started and replies created) show up completely blank. Well, blank except for a very small smiley face which I think I associate with an error of some sort? ‘Favorites’ tab actually shows a title and a comment saying I have no favorites (likely correct). ‘Subscriptions’ shows a list of topics that appears correct.

    So the problem seems to be with BuddyPress extracting forum-specific information, even though it appears to be managing to do so for the activity stream.

    I didn’t find any assortment of key words that found anything resembling this problem on the search system here. No obvious clues in the apache logs…

    #165474
    TheCrow72
    Participant

    Hi,

    I just installed a new wordpress forum website and installed the latest version of buddypress (1.7.2) and bbpress (2.3.2) and it’s running on the latest version of WP 9WordPress 3.5.1). I’ve also installed WP Mail SMTP as I having problems receiving registration emails with the password. With WP Mail, I set up a new gmail account and used the following settings:

    smtp: smtp.gmail.com
    port: 465
    Use SSL encryption.
    Yes: Use SMTP authentication.

    Followed with the gmail account and password.

    I did a test email and received that with no problems. When I log out of the website admin and try to register there is no email confirmation coming to my personal gmail account.

    The website is www.http://manitobansinbritishcolumbia.com/

    I am relatively new to WP and brand new to forums/bb press/buddy press. If anyone could offer some assistance it would be greatly appreciated.

    thanks
    Darryl

    #165468
    Famous
    Participant

    Thank you for making it a little more clear.
    Is there a place to read about how buddypress is supposed to function, or its intended use for each module, kinda like JetPack information?
    Are there any intentions to make the groups (notify group members of site activity) interactive in the near future?
    If not any time soon what is your best (weekly digest plugin or a post notification plugin for wordpress) recommendation?

    #165466
    Kingrammer
    Participant

    some more details if they will help,

    It’s a brand new install of wordpress and buddypress. a multisite install, subdomains.

    The only other plugin is Theme My Login. Custom Community Theme being used at the mo.

    Would someone give me a nudge? Thank you so much to anyone with suggestions. Learning Buddypress and reading through the Ofcom radio broadcasting guides at the same time are pickling my brain!1

    avoice
    Participant

    Hi everyone, I use the latest WordPress and Buddypress. For the past few days we have been looking into this and we could not find any solutions. Since our community will be having lots of comments (25+ per activity item) it’s really important that we are able to fix this. The person that gets us the solution we will give a $50 reward (via PayPal)!

    Website: http://bit.ly/12uq6zW

    If you scroll down the activity stream, you will see an activity item (bit.ly/14j2tbo = permalink) with 7 comments. You only see 5 and you have a link where you can click to see all the comments. Perfect!

    But when you click “Load More” and more Activity Items show, also, with 5+ comments you DON’T get the “Show all comments” link. They just all show… Which is terrible if you have 25+ comments.

    You can see it for yourself @ http://bit.ly/12uq6zW

    Please, we have tried everything but are unable to fix this. It seems like as if it’s just the Buddpress code? Who can help us out? Again, the person that gets us the solution we will give a $50 reward (via PayPal)!

    #165453
    ravibarnwal
    Participant

    groups_remove_member how to used in my plugin I am not able to used it.
    Please explain .
    I want to remove member from a group when new user registered.
    I have received group_id and user_id from database. then I want to remove all member from that group without group admin.
    I used function ‘groups_remove_member’ in my own plugin .
    I am new in wordpress and buddypress coding.
    My code is
    if (!function_exists(‘auto_join’)) {
    function update_auto_join_status($user_id) {
    global $wpdb, $bp;

    // get list of groups to auto-join.
    $group_list = $wpdb->get_results(“SELECT * FROM {$bp->groups->table_name} WHERE auto_join = 1″);

    foreach ($group_list as $group_auto_join) {
    $members_count = groups_get_groupmeta( $group_auto_join->id, ‘total_member_count’ );
    if($members_count < 5)
    {
    groups_accept_invite( $user_id, $group_auto_join->id );
    }
    else
    {
    group_auto_join_hidden_group($user_id, $group_auto_join->id);
    }
    }
    $wpdb->query(“UPDATE {$wpdb->users} SET auto_join_complete = 1 WHERE ID = {$user_id}”);
    }

    add_action( ‘user_register’, ‘auto_join’);
    }

    function group_auto_join_hidden_group($user_id, $group_id)
    {

    global $wpdb, $bp;
    $utn = $wpdb->users; // Create a shortcut variable for wordpress users table.
    $gmtn = $bp->groups->table_name . “_members”; // Create a shortcut variable for buddypress groups_members table.

    $mysql = “SELECT user_id FROM $gmtn WHERE group_id=$group_id”;
    $results = $wpdb->get_results( $mysql);
    foreach ( $results as $user) {
    groups_remove_member($user->user_id, $group_id);

    }

    }
    my auto join working well but I am not able to remove member
    Please help me what is wrong?

    #165452
    ravibarnwal
    Participant

    I want to remove member from a group when new user registered.
    I have received group_id and user_id from database. then I want to remove all member from that group without group admin.
    I used function ‘groups_remove_member’ in my own plugin .
    I am new in wordpress and buddypress coding.
    My code is
    if (!function_exists(‘auto_join’)) {
    function update_auto_join_status($user_id) {
    global $wpdb, $bp;

    // get list of groups to auto-join.
    $group_list = $wpdb->get_results(“SELECT * FROM {$bp->groups->table_name} WHERE auto_join = 1”);

    foreach ($group_list as $group_auto_join) {
    $members_count = groups_get_groupmeta( $group_auto_join->id, ‘total_member_count’ );
    if($members_count < 5)
    {
    groups_accept_invite( $user_id, $group_auto_join->id );
    }
    else
    {
    group_auto_join_hidden_group($user_id, $group_auto_join->id);
    }
    }
    $wpdb->query(“UPDATE {$wpdb->users} SET auto_join_complete = 1 WHERE ID = {$user_id}”);
    }

    add_action( ‘user_register’, ‘auto_join’);
    }

    function group_auto_join_hidden_group($user_id, $group_id)
    {

    global $wpdb, $bp;
    $utn = $wpdb->users; // Create a shortcut variable for wordpress users table.
    $gmtn = $bp->groups->table_name . “_members”; // Create a shortcut variable for buddypress groups_members table.

    $mysql = “SELECT user_id FROM $gmtn WHERE group_id=$group_id”;
    $results = $wpdb->get_results( $mysql);
    foreach ( $results as $user) {
    groups_remove_member($user->user_id, $group_id);

    }

    }
    my auto join working well but I am not able to remove member
    Please help me what is wrong?

    darkintruder
    Participant

    @shiftyRZA i saw that u posted the issue here https://buddypress.trac.wordpress.org/ticket/4586#comment:7 again. Thanks! Boone answered and changed the milestone from 1.7 to 1.8. Does that mean, that the BP-Team is looking for the template-loading-delay solution and tries to come up with a fix until 1.8 is released?

    If so, is there any “dirty code” that might fix the problem locally until then? My problem is, that i’m close to releasing a business-site which can’t afford such phenomena in the admin area. So if the BP-Team is working on a fix, i’ll wait with my release until then. If there won’t be a fix in the next months, i’ll have to find other solutions for the features i wanna offer :-S

    Thanks again for your time … Much appreciated!

    marcoarena
    Participant

    Sorry, I just found a ticket is open here: https://bbpress.trac.wordpress.org/ticket/2279

    #165445
    Carvill
    Participant

    Has anyone been able to come up with a simple method for this?

    Really need a solution, I have discovered https://wordpress.org/plugins/limit-bio/ and about to test, but I am assuming it wont work!

    #165440
    JLent.
    Participant

    Hello,

    I am using the latest versions of WordPress and Buddypress with the default theme and the mobile plugin does not seem to work. None of my content is on there and if I deactivate it my site works but my banner repeats itself any ideas what I can do to get my site formatted for mobile? Thanks in advance.

    rsandilands
    Participant

    Hi there

    My member listing page is always using page.php from my active theme.

    I’ve tried creating a custom template and specifying that in the template chooser on the “Edit” page.

    I’ve tried creating a page-slug.php using the slug of the listing page.

    Both these approaches don’t work and it’s confusing the heck out of me.

    I want to make customisations to the overall page template that the member listing appears on but can’t do so until I can invoke a specific template for that page.

    I do a lot of wordpress work and like to think that I know my way around the template hierarchy OK but this has me confounded.

    #165434
    Biggerplay
    Participant

    Uh? I just read about a 100 articles about how you can have forums from bbPress and group forums, the 2 themes that I’m trying to choose between mentions both…

    Theme1

    Theme2

    Is that what they do? they have installed bbPress separately ? What are the latest guides for achieving this?

    #165430
    aces
    Participant
    #165418

    Topic: SignUp Error

    in group forum Installing BuddyPress
    #165414

    Topic: Display Issues

    in group forum Installing BuddyPress
    bkypes
    Participant

    Hey guys,

    I just downloaded BuddyPress a few days ago and I’ve been having a pretty hard time trying to configure everything. Right now all of my pages are showing double: like this https://zoxstraps.com/discussion/.

    I’ve installed bbPress but I’ve also been having issues with that where the links on my toolbar are not being created so I have no way to edit anything.

    I’m currently on WordPress 3.5 and BuddyPress 1.7.2.

    Any help that you could give would be greatly appreciated!

    Thanks,
    Brandon

    modemlooper
    Moderator

    $user_id = get this from WordPress;
    xprofile_get_field_data( $field, $user_id );

    The way you are getting members id is only good on member pages. If you are on a blog post you can get the author id, if you want logged in user id get that.

    #165410
    volvo_owmer
    Participant

    Hello

    I´m wondering how can i configurate so i can se members profile.
    the link i have is: wordpress/members/admin/

    but i get a blank page…

    Please can some one help me…..

    I whant the member page to lock like this:
    http://www.judgegame.com/games/

    But with Cars…

    the the member profile like this:
    http://www.garaget.org/volvo_owner

    then the user can add there own cars…

    #165403
    Henry
    Member

    Once you’ve confirmed it is a bug/security issue, you can raise a ticket at BuddyPress Trac. The development team will then take a look.

    https://buddypress.trac.wordpress.org/

    #165400
    Michael
    Participant

    Hey Folks;

    Just bumping this back to the top. If anyone could assist, it would be help greatly. I’m bashing my head against he wall at this point. I could even give ftp access to the dev space and specifics if someone wanted to take a look – just really need to figure out what is going on post upgrade here.

    I created a page in the /blog path and now it goes to that page which is empty. There is no place to assign /blog to a page like there are in other buddypress instances. Perhaps since it’s a stock WordPress blog…. I’m grasping at straws pretty bad here.

    Any help is appreciated.

    Thanks;
    Michael

    Chase8705
    Participant

    I have a site that I am trying to add widgets to the sidebars. When someone logs into my site, and clicks on the “Activities” to update their status, it shows on all my sidebars “Text Widget-This is a widget area. Visit the Widget page in your WordPress control panel to add some content here”. I’m not sure how to add widgets to these sidebars. I have been trying everything.

    Any help is greatly appreciated.

    Thanks.

    #165394
    lagdonkey
    Participant

    First off, I’m using BP 1.7, and wordpress 3.5.1 website is amazinglyamusing.com.

    Just installed BP, and am about to start working on templates to fit it into my theme, however 1 criteria I require, is for users to be able to upload their own avatars, which BP does.

    First off, I tested this feature on my localhost development site, and the first thing I tried was to break any security features it has. What I found was, I could easily take a standard raw PHP file, change the extension to .jpg, and it would upload. Of course it gave an error when it got to the cropping section, however the file is sitting in the folder wp-content/uploads/avatar/3. This is a MAJOR security issue, as anyone could very easily upload any malicious file and do what they want, if they can figure out where the uploaded files go(which wouldn’t be all that hard).

    I’m just wondering if there’s some setting in BP itself I’m missing, or if this is really how this plugin works. I’ll admit, I don’t know all the ins and outs of web development and security, but this seems pretty dangerous, unless I’m missing something. It was my assumption that DP should be checking MIME filetype, and using other checksums to ensure this sort of thing can’t happen.

    #165384

    In reply to: Can't delete plugins

    @mercime
    Participant

    From the dashboard I can’t delete any plugins or themes … RSS Error: WP HTTP Error … I am unable to connect to download new plugins or themes from the dashboard …

    @akukskuks BuddyPress activation does not cause those issues. Deactivate BuddyPress. Are the issues still there in your install? If so, you have get WP working without issues first before activating BP again.

    How did you install WordPress, via webhost one-click WP install or manually? If you used webhost’s installation script, backup database to computer, then drop tables and start re-uploading WordPress manually via s/FTP. BP does not work well with one-click webhost scripts.

    jeffp808
    Participant

    I have an issue where after a user uploads a picture for their avatar, the alignment if extremely off when they go to crop it. So if they try to crop to the center, they are really cropping to the top left. Could anyone please help me with this? Thank you so much in advance!

    Screenshot Of Avatar Cropping Issue

    I’m running WordPress Version 3.5.1 and Buddypress 1.7.

    @mercime
    Participant

    @tduschei you’re welcome. Marking this as resolved.
    Added those php tags to that page.

Viewing 25 results - 13,826 through 13,850 (of 32,678 total)
Skip to toolbar